الفرق بين المراجعتين لصفحة: «Ruby/NilClass/nil-3F»
لا ملخص تعديل |
جميل-بيلوني (نقاش | مساهمات) ط مراجعة وتدقيق. |
||
سطر 1: | سطر 1: | ||
<noinclude>{{DISPLAYTITLE: التابع <code>nil? | <noinclude>{{DISPLAYTITLE: التابع <code>NilClass.nil?</code> في روبي}}</noinclude> | ||
[[تصنيف: Ruby]] | [[تصنيف: Ruby]] | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby NilClass]] | [[تصنيف: Ruby NilClass]] | ||
يتحقق التابع <code>nil?</code> إن كان الكائن الذي استدعي معه هو الكائن <code>nil</code>. | |||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby">nil?→ true</syntaxhighlight> | <syntaxhighlight lang="ruby">nil?→ true</syntaxhighlight> | ||
==القيمة | ==القيمة المعادة== | ||
تعاد القيمة <code>true</code> إن كان الكائن المعطى هو الكائن <code>nil</code>. خلا ذلك، تعاد القيمة <code>true</code>. | |||
==انظر أيضا== | ==انظر أيضا== | ||
* التابع <code>[[Ruby/NilClass/inspect|inspect]]</code>: يعيد | * التابع <code>[[Ruby/NilClass/inspect|inspect]]</code>: يعيد دائمًا السلسلة النصية "<code>nil</code>". | ||
==مصادر== | ==مصادر== | ||
*[http://ruby-doc.org/core-2.5.1/NilClass.html#method-i-nil-3F قسم | *[http://ruby-doc.org/core-2.5.1/NilClass.html#method-i-nil-3F قسم التابع nil? في الصنف NilClass في توثيق روبي الرسمي.] |
المراجعة الحالية بتاريخ 06:52، 20 نوفمبر 2018
يتحقق التابع nil?
إن كان الكائن الذي استدعي معه هو الكائن nil
.
البنية العامة
nil?→ true
القيمة المعادة
تعاد القيمة true
إن كان الكائن المعطى هو الكائن nil
. خلا ذلك، تعاد القيمة true
.
انظر أيضا
- التابع
inspect
: يعيد دائمًا السلسلة النصية "nil
".