Ruby:define_method vs. def

时间:2008-10-09 04:31:47

标签: ruby metaprogramming

作为编程练习,我编写了一个Ruby片段,它创建了一个类,从该类中实例化了两个对象,monkeypatches一个对象,并依赖于method_missing来monkeypatch另一个。

这是交易。这按预期工作:

class Monkey

  def chatter
    puts "I am a chattering monkey!"
  end

  def method_missing(m)
    puts "No #{m}, so I'll make one..."
    def screech
      puts "This is the new screech."
    end
  end
end

m1 = Monkey.new
m2 = Monkey.new

m1.chatter
m2.chatter

def m1.screech
  puts "Aaaaaargh!"
end

m1.screech
m2.screech
m2.screech
m1.screech
m2.screech

你会注意到我有一个method_missing的参数。我这样做是因为我希望使用define_method动态创建具有适当名称的缺失方法。但是,它不起作用。实际上,即使使用带有静态名称的define_method也是如此:

def method_missing(m)
  puts "No #{m}, so I'll make one..."
  define_method(:screech) do
    puts "This is the new screech."
  end
end

结束以下结果:

ArgumentError: wrong number of arguments (2 for 1)

method method_missing   in untitled document at line 9
method method_missing   in untitled document at line 9
at top level    in untitled document at line 26
Program exited.

让错误信息更令人困惑的是,我只有method_missing的一个参数......

3 个答案:

答案 0 :(得分:136)

define_method是对象 Class 的(私有)方法。您是从实例调用它。没有名为define_method的实例方法,所以它会递归到method_missing,这次使用:define_method(缺少方法的名称)和:screech(唯一的参数)你转到define_method)。

改为尝试(在所有Monkey对象上定义新方法):

def method_missing(m)
    puts "No #{m}, so I'll make one..."
    self.class.send(:define_method, :screech) do
      puts "This is the new screech."
    end
end

或者这个(只在它被调用的对象上定义它,使用对象的“本征类”):

def method_missing(m)
    puts "No #{m}, so I'll make one..."
    class << self
      define_method(:screech) do
        puts "This is the new screech."
      end
    end
end

答案 1 :(得分:4)

self.class.define_method(:screech)不起作用,因为define_method是私有方法 你可以那样做

class << self
    public :define_method
end
def method_missing(m)
puts "No #{m}, so I'll make one..."
Monkey.define_method(:screech) do
  puts "This is the new screech."
end

答案 2 :(得分:4)

def method_missing(m)
    self.class.class_exec do
       define_method(:screech) {puts "This is the new screech."}
    end 
end

screech方法将适用于所有Monkey对象。