2016-06-23から1日間の記事一覧

【Ruby】Mix-inは継承なのか

Mix-inは継承なのか RubyのMix-inの挙動は継承とよく似ています。 superメソッドを使って確認してみましょう。 module Greetable def say_hello p "Hello Greetable" end end class Human include Greetable def say_hello p "Hello Human" super end end Hu…