@kyanny's blog

My thoughts, my life. Views/opinions are my own.

2010-12-09から1日間の記事一覧

第二章 火曜日 メソッド

動的ディスパッチ send class Dog def bark "bow wow!" end end Dog.new.send(:bark) #=> "bow wow!" パターンディスパッチ instance_methods.grep /pattern/ class Dog def bark "bow wow!" end end method = Dog.instance_methods.grep(/bark/).first Dog.…