الفرق بين المراجعتين لصفحة: «Ruby/BasicObject/singleton method added»

من موسوعة حسوب
أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: التابع singleton_method_added في الصنف BasicObject في روبي}}</noinclude> تصنيف: Ruby [[تصنيف: Ruby Method]...'
 
لا ملخص تعديل
سطر 1: سطر 1:
<noinclude>{{DISPLAYTITLE: التابع singleton_method_added في الصنف BasicObject في روبي}}</noinclude>
<noinclude>{{DISPLAYTITLE: التابع <code> singleton_method_added </code> في الصنف <code>BasicObject</code> في روبي}}</noinclude>
[[تصنيف: Ruby]]
[[تصنيف: Ruby]]
[[تصنيف: Ruby Method]]
[[تصنيف: Ruby Method]]
[[تصنيف: Ruby ARGF]]
[[تصنيف: Ruby ARGF]]
يُستَدعى هذا التابع كرد نداءٍ (<code>callback</code>) في كلِّ مرة يُضاف فيها تابع منفرد (<code>singleton</code> <code>method</code>) جديد إلى المُستقبِل (<code>receiver</code>).
يُستَدعى هذا التابع كرد نداءٍ (callback) في كلِّ مرة يُضاف فيها تابع منفرد (singleton method) جديد إلى المُستقبِل (receiver).
==البنية العامة==
==البنية العامة==
<syntaxhighlight lang="ruby"> singleton_method_added(symbol)
<syntaxhighlight lang="ruby"> singleton_method_added(symbol)
سطر 17: سطر 17:
  def Chatty.three() end
  def Chatty.three() end
end
end
يظهر هذا المثال عند تنفيذه المخرجات التالية:
 
Adding singleton_method_added
</syntaxhighlight>يظهر هذا المثال عند تنفيذه المخرجات التالية:<syntaxhighlight lang="ruby"> Adding singleton_method_added
Adding one
Adding one
Adding three
Adding three
  </syntaxhighlight>
  </syntaxhighlight>
==انظر أيضًا==
==انظر أيضًا==
* التابع [[Ruby/BasicObject/singleton_method_removed | <code>singleton_method_removed</code>]]: يُستَدعى هذا التابع كرد نداءٍ (<code>callback</code>) في كل مرة يُحذف فيها تابع منفرد (<code>singleton</code> <code>method</code>) من المُستقبِل (<code>receiver</code>).
* التابع [[Ruby/BasicObject/singleton_method_removed | <code>singleton_method_removed</code>]]: يُستَدعى هذا التابع كرد نداءٍ (callback) في كل مرة يُحذف فيها تابع منفرد (singleton method) من المُستقبِل (<code>receiver</code>).
* التابع [[Ruby/BasicObject/singleton_method_undefined | <code>singleton_method_undefined</code>]]: يُستدعى هذا التابع كرد نداءٍ (<code>callback</code>) في كل مرة يكون فيها تابع منفرد (<code>singleton</code> <code>method</code>) غير مُعرَّف (<code>undefined</code>) في المُستقبِل (<code>receiver</code>).
* التابع [[Ruby/BasicObject/singleton_method_undefined | <code>singleton_method_undefined</code>]]: يُستدعى هذا التابع كرد نداءٍ (callback) في كل مرة يكون فيها تابع منفرد (<code>singleton</code> <code>method</code>) غير مُعرَّف (undefined) في المُستقبِل (receiver).
==مصادر==
==مصادر==
* قسم التابع singleton_method_added في الصنف BasicObject في توثيق روبي الرسمي.
* [http://ruby-doc.org/core-2.5.1/BasicObject.html#method-i-singleton_method_added قسم التابع singleton_method_added في الصنف BasicObject في توثيق روبي الرسمي.]

مراجعة 18:26، 11 سبتمبر 2018

يُستَدعى هذا التابع كرد نداءٍ (callback) في كلِّ مرة يُضاف فيها تابع منفرد (singleton method) جديد إلى المُستقبِل (receiver).

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

 singleton_method_added(symbol)

أمثلة

مثال على استخدام التابع singleton_method_added:

 module Chatty
 def Chatty.singleton_method_added(id)
   puts "Adding #{id.id2name}"
 end
 def self.one()     end
 def two()          end
 def Chatty.three() end
end

يظهر هذا المثال عند تنفيذه المخرجات التالية:

 Adding singleton_method_added
Adding one
Adding three

انظر أيضًا

  • التابع singleton_method_removed: يُستَدعى هذا التابع كرد نداءٍ (callback) في كل مرة يُحذف فيها تابع منفرد (singleton method) من المُستقبِل (receiver).
  • التابع singleton_method_undefined: يُستدعى هذا التابع كرد نداءٍ (callback) في كل مرة يكون فيها تابع منفرد (singleton method) غير مُعرَّف (undefined) في المُستقبِل (receiver).

مصادر