الفرق بين المراجعتين لصفحة: «Ruby/InstructionSequence/absolute path»

من موسوعة حسوب
أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: التابع <code>absolute_path‎</code> الخاص بالصنف <code>InstructionSequence</code> في روبي}}</noinclude> تصني...'
 
لا ملخص تعديل
سطر 3: سطر 3:
[[تصنيف: Ruby Method]]
[[تصنيف: Ruby Method]]
[[تصنيف: Ruby InstructionSequence]]
[[تصنيف: Ruby InstructionSequence]]
يُعيد التابع <code>absolute_path</code> المسار المطلق ل[[Ruby/InstructionSequence|سلسلة التعليمات]] (<code>[[Ruby/InstructionSequence|InstructionSequence]]</code>).
يُعيد التابع <code>absolute_path</code> المسار المطلق ل[[Ruby/InstructionSequence|سلسلة التعليمات]].
يعيد القيمة <code>nil</code> إذا تم تقييم [[Ruby/InstructionSequence|سلسلة التعليمات]] التي استُدعي معها انطلاقا من [[Ruby/String|سلسلة نصية]].
 
على سبيل المثال، باستخدام <code>[[Ruby/InstructionSequence/compile_file|::compile_file]]</code>:
ويعيد القيمة <code>nil</code> إذا تم تقييم [[Ruby/InstructionSequence|سلسلة التعليمات]] التي استُدعي معها انطلاقا من [[Ruby/String|سلسلة نصية]].
 
على سبيل المثال، باستخدام التابع <code>[[Ruby/InstructionSequence/compile_file|compile_file]]</code>:
<syntaxhighlight lang="ruby"># /tmp/method.rb
<syntaxhighlight lang="ruby"># /tmp/method.rb
def hello
def hello
سطر 14: سطر 16:
> iseq.absolute_path #=> /tmp/method.rb‎</syntaxhighlight>
> iseq.absolute_path #=> /tmp/method.rb‎</syntaxhighlight>
==البنية العامة==
==البنية العامة==
<syntaxhighlight lang="ruby"></syntaxhighlight>
<syntaxhighlight lang="ruby">absolute_path()</syntaxhighlight>
==القيمة المُعادة==
==القيمة المُعادة==
يُعيد التابع <code>absolute_path</code> المسار المطلق ل[[Ruby/InstructionSequence|سلسلة التعليمات]].


==انظر أيضا==
==انظر أيضا==
* التابع <code>[[Ruby/InstructionSequence/of|of]]</code>: يُعيد  [[Ruby/InstructionSequence|سلسلة التعليمات]] التي تحتوي كائن proc أو method المعطى.
* التابع <code>[[Ruby/InstructionSequence/of|of]]</code>: يُعيد  [[Ruby/InstructionSequence|سلسلة التعليمات]] التي تحتوي كائن <code>proc</code> أو <code>method</code> المعطى.
* التابع <code>[[Ruby/InstructionSequence/base_label|base_label]]</code>: يُعيد  التسمية الأساسية (base label) ل[[Ruby/InstructionSequence|سلسلة التعليمات]] التي .
* التابع <code>[[Ruby/InstructionSequence/base_label|base_label]]</code>: يُعيد  التسمية الأساسية (base label) ل[[Ruby/InstructionSequence|سلسلة التعليمات]].


==مصادر==
==مصادر==
*[http://ruby-doc.org/core-2.5.1/RubyVM/InstructionSequence.html#method-i-absolute_path قسم  التابع absolute_path‎ في الصنف InstructionSequence‎ في توثيق روبي الرسمي.]
*[http://ruby-doc.org/core-2.5.1/RubyVM/InstructionSequence.html#method-i-absolute_path قسم  التابع absolute_path‎ في الصنف InstructionSequence‎ في توثيق روبي الرسمي.]

مراجعة 22:06، 1 نوفمبر 2018

يُعيد التابع absolute_path المسار المطلق لسلسلة التعليمات.

ويعيد القيمة nil إذا تم تقييم سلسلة التعليمات التي استُدعي معها انطلاقا من سلسلة نصية.

على سبيل المثال، باستخدام التابع compile_file:

# /tmp/method.rb
def hello
  puts "hello, world"
end
# in irb
> iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
> iseq.absolute_path #=> /tmp/method.rb‎

البنية العامة

absolute_path()

القيمة المُعادة

يُعيد التابع absolute_path المسار المطلق لسلسلة التعليمات.

انظر أيضا

مصادر