Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-09-28から1日間の記事一覧

Ruby | Object | is_a? or kind_of?

概要 Object#is_a?(mod) -> bool Object#kind_of?(mod) -> bool 詳細 オブジェクトが指定されたクラス mod かそのサブクラスのインスタンスであるとき真を返却 サンプルコード require 'tbpgr_utils' class Parent end class Child < Parent end parent = Pa…