Tbpgr Blog

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

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

Ruby | Object | instance_variables

概要 Object#instance_variables -> [Symbol] 詳細 オブジェクトのインスタンス変数名をシンボルの配列として返却 サンプルコード class Person attr_reader :name, :age def initialize(options = {name: nil, age: nil} ) @name = options[:name] @age = o…