How do I dynamically define a method as private?

蓝咒 提交于 2019-11-30 16:45:44

问题


This does not seem to work:

class Test
  private

  define_method :private_method do 
    "uh!"
  end
end

puts Test.new.private_method

回答1:


Test.instance_eval { private :private_method }

Or, just run

private :private_method

from within the Test class.




回答2:


It seems that starting with Ruby 2.1, define_method respects private:

$ rvm 2.1.0
$ ruby /tmp/test.rb
/tmp/test.rb:10:in `<main>': private method `private_method' called for #<Test:0x00000102014598> (NoMethodError)
$ rvm 2.0
$ ruby /tmp/test.rb
uh!

(I realize this is an old question, but I happened across it via Google.)




回答3:


Module#private takes an optional argument for the method name:

class Test
 private :private_method
end

The above is of course equivalent to

Test.private :private_method # doesn't work

Except that Module#private is private, so you have to use reflection to circumvent the access restrictions:

Test.send :private, :private_method

No eval necessary.



来源:https://stackoverflow.com/questions/3782026/how-do-i-dynamically-define-a-method-as-private

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!