الفرق بين المراجعتين ل"Ruby/Binding/local variables"
اذهب إلى التنقل
اذهب إلى البحث
(أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: <code>التابعBinding.local_variables</code> في روبي}}</noinclude> تصنيف: Ruby تصنيف: Ruby Method تصن...') |
|||
سطر 3: | سطر 3: | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby ARGF]] | [[تصنيف: Ruby ARGF]] | ||
− | يعيد التابع <code>local_variables</code> أسماء المتغيرات المحلية المعرفة في <code>Binding</code> على شكل رموز ( | + | يعيد التابع <code>local_variables</code> أسماء المتغيرات المحلية المعرفة في <code>Binding</code> على شكل رموز (symbols). |
− | هذا التابع هو النسخة المختصرة للشيفرة التالية: | + | هذا التابع هو النسخة المختصرة للشيفرة التالية:<syntaxhighlight lang="ruby"> |
− | < | + | binding. eval("local_variables") |
+ | </syntaxhighlight> | ||
+ | |||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby"> local_variables → Array | <syntaxhighlight lang="ruby"> local_variables → Array | ||
سطر 24: | سطر 26: | ||
* التابع [[Ruby/Binding/eval | <code>eval</code>]]: يقدر تعابير لغة روبي الممررة إليه في السياق <code>binding</code>. | * التابع [[Ruby/Binding/eval | <code>eval</code>]]: يقدر تعابير لغة روبي الممررة إليه في السياق <code>binding</code>. | ||
* التابع [[Ruby/Binding/local_variable_set | <code>local_variable_set</code>]]: يضبط قيمة المتغير المحلي الممرر إليه إلى قيمة معينة. | * التابع [[Ruby/Binding/local_variable_set | <code>local_variable_set</code>]]: يضبط قيمة المتغير المحلي الممرر إليه إلى قيمة معينة. | ||
− | * التابع[[Ruby/Binding/local_variable_get | <code>local_variable_get</code>]] : يعيد قيمة المتغير المحلي الممرَّر إليه. | + | * التابع [[Ruby/Binding/local_variable_get |<code>local_variable_get</code>]] : يعيد قيمة المتغير المحلي الممرَّر إليه. |
− | * التابع[[Ruby/Binding/local_variable_defined-3F | <code>local_variable_defined?</code>]] | + | * التابع [[Ruby/Binding/local_variable_defined-3F |<code>local_variable_defined?</code>]] : يتحقق إن كان المتغير <code>symbol</code> المحلي موجودًا أم لا. |
==مصادر== | ==مصادر== | ||
− | * قسم التابع local_variables في الصنف Binding في توثيق روبي الرسمي. | + | * [http://ruby-doc.org/core-2.5.1/Binding.html#method-i-local_variables قسم التابع local_variables في الصنف Binding في توثيق روبي الرسمي.] |
مراجعة 12:50، 12 سبتمبر 2018
يعيد التابع local_variables
أسماء المتغيرات المحلية المعرفة في Binding
على شكل رموز (symbols).
هذا التابع هو النسخة المختصرة للشيفرة التالية:
binding. eval("local_variables")
البنية العامة
local_variables → Array
القيم المعادة
تعاد مصفوفة تحوي أسماء المتغيرات المحلية المعرفة في Binding
.
أمثلة
مثال على استخدام التابع local_variables
:
def foo
a = 1
2.times do |n|
binding.local_variables #=> [:a, :n]
end
end
انظر أيضًا
- التابع
eval
: يقدر تعابير لغة روبي الممررة إليه في السياقbinding
. - التابع
local_variable_set
: يضبط قيمة المتغير المحلي الممرر إليه إلى قيمة معينة. - التابع
local_variable_get
: يعيد قيمة المتغير المحلي الممرَّر إليه. - التابع
local_variable_defined?
: يتحقق إن كان المتغيرsymbol
المحلي موجودًا أم لا.