0

我还是红宝石的新手。我不明白方法的可见性。文档说,默认情况下所有方法都是公共的(除非另有定义)。所以这应该有效(但它没有,MWE):

modules/example.rb

class Example

  def do_stuff
    puts 'hello world'
  end

end

testing.rb

load 'modules/example.rb'

Example.new
Example.do_stuff

调用$ ruby testing.rb 结果

testing.rb:9:in `<main>': undefined method `do_stuff' for Example:Class (NoMethodError)

有人可以解释为什么吗?以及如何解决我可以do_stuff直接调用的问题?

4

1 回答 1

2

您正在定义一个实例方法,并且需要在 Example 类的实例上调用它:

ex_instance = Example.new
ex_instance.do_stuff

如果要直接调用它,则需要将其定义为类方法:

class Example

  def self.do_stuff
    puts 'hello world'
  end

end

那么你可以这样调用它而无需调用Example.new

Example.do_stuff
于 2012-09-14T10:44:37.450 回答