从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

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...