当前位置:  开发笔记 > 后端 > 正文

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

如何解决《从Ruby中的类方法调用私有实例方法》经验,为你挑选了3个好方法。

我可以创建一个可以通过类方法调用的私有实例方法吗?

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

抱歉,如果这是一个非常基本的问题,但我无法以谷歌的方式找到解决方案.



1> Samuel..:

使用私有或受保护的实际上并没有在Ruby中做那么多.您可以在任何对象上调用send并使用它拥有的任何方法.

class Foo
  def Foo.bar(my_instance, n)
    my_instance.send(:plus, n)
  end
end



2> rkj..:

你可以像塞缪尔所展示的那样做,但它确实绕过了OO检查......

在Ruby中,您只能在同一个对象上发送私有方法,并且只能保护同一个类的对象.静态方法驻留在元类中,因此它们位于不同的对象(也是不同的类)中 - 因此您无法使用私有或受保护的方式.



3> rampion..:

你也可以用 instance_eval

class Foo
  def self.bar(my_instance, n)
    my_instance.instance_eval { plus(n) }
  end
end

推荐阅读
围脖上的博博_771
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有