class Dog def initialize(name) @name = name end endmodule Speech def say_name puts @name end # call to method in module ? say_nameendfIDo = Dog.new('fIDo')fIDo.extend Speech => *'fIDo'*
我知道’included’方法在包含模块时有点像回调,但我希望有类似的东西用于扩展.
解决方法 这是使用方法extend_object
的一个技巧. Extends the specifIEd object by adding this module’s constants and methods (which are added as singleton methods). This is the callback method used by
Object#extend
.
class Dog def initialize(name) @name = name end endmodule Speech def Speech.extend_object(o) super puts o.say_name end def say_name @name endendfIDo = Dog.new('fIDo')fIDo.extend Speech # 'fIDo'总结
以上是内存溢出为你收集整理的扩展时的Ruby调用模块方法全部内容,希望文章能够帮你解决扩展时的Ruby调用模块方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)