本文简要介绍ruby语言中 BasicObject.singleton_method_added
的用法。
用法
singleton_method_added(symbol)
每当将单例方法添加到接收器时作为回调调用。
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
相关用法
- Ruby BasicObject.singleton_method_undefined用法及代码示例
- Ruby BasicObject.singleton_method_removed用法及代码示例
- Ruby BasicObject.send用法及代码示例
- Ruby BasicObject.equal?用法及代码示例
- Ruby BasicObject.instance_eval用法及代码示例
- Ruby BasicObject.obj ==用法及代码示例
- Ruby BasicObject.method_missing用法及代码示例
- Ruby BasicObject.instance_exec用法及代码示例
- Ruby BasicObject.__id__用法及代码示例
- Ruby BasicObject类用法及代码示例
- Ruby BasicSocket.send用法及代码示例
- Ruby BasicSocket.remote_address用法及代码示例
- Ruby BasicSocket.recv用法及代码示例
- Ruby BasicSocket.do_not_reverse_lookup用法及代码示例
- Ruby BasicSocket.do_not_reverse_lookup =用法及代码示例
- Ruby BasicSocket.connect_address用法及代码示例
- Ruby BasicSocket.recv_nonblock用法及代码示例
- Ruby BasicSocket.recvmsg用法及代码示例
- Ruby BasicSocket.getsockopt用法及代码示例
- Ruby BasicSocket.getpeereid用法及代码示例
- Ruby BasicSocket.local_address用法及代码示例
- Ruby BasicSocket.shutdown用法及代码示例
- Ruby BasicSocket.close_read用法及代码示例
- Ruby BasicSocket.getpeername用法及代码示例
- Ruby BasicSocket.getsockname用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 BasicObject.singleton_method_added。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。