有沒有辦法在一個類中使用宇宙飛船方法和神奇的「method_missing」?下面的例子給我undefined method '<'
每當我試圖用foo1 < foo2
像definiton:「def <=>」vs「def method_missing」
class Foo
def initialize(params)
@parent= params[:parent]
end
def <=>(o)
...
end
def method_missing(sym, *args, &block)
@parent.send sym, *args, &block
end
end
任何幫助表示讚賞:)
method_missing與問題無關。 – gtd
如此真實 - 工作時間過長,沒有看到明顯的;) – pagid