微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

从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.jb51.cc/ruby/272615.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐