الفرق بين المراجعتين ل"Ruby/Module/remove class variable"
اذهب إلى التنقل
اذهب إلى البحث
(أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: التابع <code>remove_class_variable</code> الخاص بالصنف <code>Module</code> في روبي}}</noinclude> تصنيف: Ru...') |
|||
سطر 3: | سطر 3: | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby Module]] | [[تصنيف: Ruby Module]] | ||
− | يزيل التابع <code>remove_class_variable</code> تعريف الوسيط المعطى sym (انظر فقرة البنية العام)، ثم يعيد قيمة ذلك الثابت. | + | يزيل التابع <code>remove_class_variable</code> تعريف الوسيط المعطى <code>sym</code> (انظر فقرة البنية العام)، ثم يعيد قيمة ذلك الثابت. |
− | |||
− | |||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby">remove_class_variable(sym) → obj</syntaxhighlight> | <syntaxhighlight lang="ruby">remove_class_variable(sym) → obj</syntaxhighlight> | ||
سطر 11: | سطر 9: | ||
===<code>sym</code>=== | ===<code>sym</code>=== | ||
− | + | رمز. | |
==القيمة المُعادة== | ==القيمة المُعادة== | ||
+ | يعيد التابع <code>remove_class_variable</code> قيمة ذلك الثابت. | ||
==أمثلة== | ==أمثلة== | ||
سطر 21: | سطر 20: | ||
remove_class_variable(:@@var) | remove_class_variable(:@@var) | ||
p(defined? @@var) | p(defined? @@var) | ||
− | end</syntaxhighlight> | + | end</syntaxhighlight>الناتج:<syntaxhighlight lang="ruby">99 |
+ | nil</syntaxhighlight> | ||
==انظر أيضا== | ==انظر أيضا== | ||
− | * التابع <code>[[Ruby/Module/ | + | * التابع <code>[[Ruby/Module/remove_const|remove_const]]</code>: يزيل تعريف الثابت المعطى، ويعيد القيمة السابقة لذلك الثابت. |
− | * التابع <code>[[Ruby/Module/ | + | * التابع <code>[[Ruby/Module/remove method|remove_method]]</code>: يزيل التوابع المحددة بواسطة الوسيط <code>symbol</code> من الصنف الحالي. |
+ | * التابع <code>[[Ruby/Module/remove class variable|remove_class_variable]]</code>: يزيل تعريف الوسيط المعطى sym ، ثم يعيد قيمة ذلك الثابت. | ||
==مصادر== | ==مصادر== | ||
*[http://ruby-doc.org/core-2.5.1/Module.html#method-i-remove_class_variable قسم التابع remove_class_variable في الصنف Module في توثيق روبي الرسمي.] | *[http://ruby-doc.org/core-2.5.1/Module.html#method-i-remove_class_variable قسم التابع remove_class_variable في الصنف Module في توثيق روبي الرسمي.] |
مراجعة 10:23، 27 أكتوبر 2018
يزيل التابع remove_class_variable
تعريف الوسيط المعطى sym
(انظر فقرة البنية العام)، ثم يعيد قيمة ذلك الثابت.
البنية العامة
remove_class_variable(sym) → obj
المعاملات
sym
رمز.
القيمة المُعادة
يعيد التابع remove_class_variable
قيمة ذلك الثابت.
أمثلة
مثال على استخدام التابع remove_class_variable
:
class Dummy
@@var = 99
puts @@var
remove_class_variable(:@@var)
p(defined? @@var)
end
الناتج:
99
nil
انظر أيضا
- التابع
remove_const
: يزيل تعريف الثابت المعطى، ويعيد القيمة السابقة لذلك الثابت. - التابع
remove_method
: يزيل التوابع المحددة بواسطة الوسيطsymbol
من الصنف الحالي. - التابع
remove_class_variable
: يزيل تعريف الوسيط المعطى sym ، ثم يعيد قيمة ذلك الثابت.