从Ruby中的类方法调用私有实例方法
发布时间:2020-12-16 20:04:54 所属栏目:百科 来源:网络整理
导读:我可以创建一个可以通过类方法调用的私有实例方法吗? class Foo def initialize(n) @n = n end private # or protected? def plus(n) @n += n endendclass Foo def Foo.bar(my_instance,n) my_instance.plus(n) endenda = Foo.new(5)a.plus(3) # This shoul
我可以创建一个可以通过类方法调用的私有实例方法吗?
class Foo def initialize(n) @n = n end private # or protected? def plus(n) @n += n end end class Foo def Foo.bar(my_instance,n) my_instance.plus(n) end end a = Foo.new(5) a.plus(3) # This should not be allowed,but Foo.bar(a,3) # I want to allow this 道歉,如果这是一个相当基本的问题,但我没有能够谷歌我的方式解决方案. 解决方法
使用私有或受保护的,真的不会在Ruby中做得太多.您可以调用发送任何对象并使用其具有的任何方法.
class Foo def Foo.bar(my_instance,n) my_instance.send(:plus,n) end end (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |