社内で下記コードの挙動どうなの?みたいな話題が挙がってました。 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://codepad.org/T2LkPfc0 自分はA's barになるかな、と思ってたのでアレ?って感じ。 rubyのsuperはオーバーライドしたメソッドだけなんですね。 Javaだと「A's bar」になるそうです*1 PHPで試してみました。 <?php class A { public function foo() { $this->bar(); } public function bar() { echo