从Ruby中的类方法调用私有实例方法

前端之家收集整理的这篇文章主要介绍了从Ruby中的类方法调用私有实例方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以创建一个可以通过类方法调用的私有实例方法吗?
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
原文链接:https://www.f2er.com/ruby/272615.html

猜你在找的Ruby相关文章