モノノフ日記

普通の日記です

2008-09-22から1日間の記事一覧

Rubyのsuperの挙動

社内で下記コードの挙動どうなの?みたいな話題が挙がってました。 class A def foo bar end def bar puts "A's bar" end end class B < A def foo super end def bar puts "B's bar" end end # run B.new.foo 出力結果は「B's bar」になります。http://code…