Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
o = Object.new def o.method_missing(m,*args) puts "xxxxxxx #{m}" end p o.some_method
メソッドをオーバーライドする基本的なプロセスは何ですか?
新しいメソッドは、欠落しているメソッドを呼び出していることをどのように認識しますか
呼び出されたメソッドが定義されていない場合、欠落しているメソッドを呼び出していることがわかります。
新しいメソッドの出力をどのように出力しますか?
新しく定義されたメソッドを実行する。
議論としてどのようにsome_method考えられmますか?
some_method
m
意図的に。