1
我很新的Ruby和現在試圖瞭解一些有關的元編程。 我要回錯過的方法名稱:attr_accessor中的method_missing
class Numeric
attr_accessor :method_name
def method_missing(method_id)
method_name = method_id.to_s
self
end
def name
method_name
end
end
10.new_method.name #this should return new_method, but returns nil
的感謝!它現在絕對清晰 – dmitry 2012-03-09 08:53:45