الفرق بين المراجعتين لصفحة: «Ruby/BasicObject/singleton method removed»
< Ruby | BasicObject
لا ملخص تعديل |
جميل-بيلوني (نقاش | مساهمات) ط مراجعة وتدقيق. |
||
سطر 2: | سطر 2: | ||
[[تصنيف: Ruby]] | [[تصنيف: Ruby]] | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby | [[تصنيف: Ruby BasicObject]] | ||
يُستَدعى | يُستَدعى التابع <code>singleton_method_removed</code> كرد نداءٍ (callback) في كل مرة يُحذف فيها تابع منفرد (singleton method) من المُستقبِل (receiver). | ||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby"> singleton_method_removed(symbol) | <syntaxhighlight lang="ruby">singleton_method_removed(symbol) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==أمثلة== | ==أمثلة== | ||
مثال على استخدام التابع <code>singleton_method_removed</code>: | مثال على استخدام التابع <code>singleton_method_removed</code>: | ||
<syntaxhighlight lang="ruby"> module Chatty | <syntaxhighlight lang="ruby">module Chatty | ||
def Chatty.singleton_method_removed(id) | def Chatty.singleton_method_removed(id) | ||
puts "Removing #{id.id2name}" | puts "Removing #{id.id2name}" | ||
سطر 27: | سطر 27: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==انظر أيضًا== | ==انظر أيضًا== | ||
* التابع [[Ruby/BasicObject/singleton_method_added | <code>singleton_method_added</code>]]: يُستَدعى هذا التابع كرد نداءٍ (callback) في كلِّ مرة يُضاف فيها تابع منفرد (singleton method) جديد إلى المُستقبِل ( | * التابع<nowiki/>[[Ruby/BasicObject/singleton_method_added | <code>singleton_method_added</code>]]: يُستَدعى هذا التابع كرد نداءٍ (callback) في كلِّ مرة يُضاف فيها تابع منفرد (singleton method) جديد إلى المُستقبِل (receiver). | ||
* التابع [[Ruby/BasicObject/singleton_method_undefined | <code>singleton_method_undefined</code>]]: يُستدعى هذا التابع كرد نداءٍ ( | * التابع<nowiki/>[[Ruby/BasicObject/singleton_method_undefined | <code>singleton_method_undefined</code>]]: يُستدعى هذا التابع كرد نداءٍ (callback) في كل مرة يكون فيها تابع منفرد (singleton method) غير مُعرَّف (undefined) في المُستقبِل (receiver). | ||
==مصادر== | ==مصادر== | ||
* [http://ruby-doc.org/core-2.5.1/BasicObject.html#method-i-singleton_method_removed قسم التابع singleton_method_removed في الصنف BasicObject في توثيق روبي الرسمي.] | * [http://ruby-doc.org/core-2.5.1/BasicObject.html#method-i-singleton_method_removed قسم التابع singleton_method_removed في الصنف BasicObject في توثيق روبي الرسمي.] |
مراجعة 07:27، 4 أكتوبر 2018
يُستَدعى التابع singleton_method_removed
كرد نداءٍ (callback) في كل مرة يُحذف فيها تابع منفرد (singleton method) من المُستقبِل (receiver).
البنية العامة
singleton_method_removed(symbol)
أمثلة
مثال على استخدام التابع singleton_method_removed
:
module Chatty
def Chatty.singleton_method_removed(id)
puts "Removing #{id.id2name}"
end
def self.one() end
def two() end
def Chatty.three() end
class << self
remove_method :three
remove_method :one
end
end
يظهر هذا المثال عند تنفيذه المخرجات التالية:
Removing three
Removing one
انظر أيضًا
- التابع
singleton_method_added
: يُستَدعى هذا التابع كرد نداءٍ (callback) في كلِّ مرة يُضاف فيها تابع منفرد (singleton method) جديد إلى المُستقبِل (receiver). - التابع
singleton_method_undefined
: يُستدعى هذا التابع كرد نداءٍ (callback) في كل مرة يكون فيها تابع منفرد (singleton method) غير مُعرَّف (undefined) في المُستقبِل (receiver).