Tbpgr Blog

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

2014-08-07から1日間の記事一覧

Ruby | Module | attr_accessor

概要 Module#attr_accessor(*name) -> nil 詳細 インスタンス変数読み書きの両方のインスタンスメソッドを定義する。つまり class Person attr_accessor :name def initialize(name) @name = name end end は class Person def initialize(name) @name = nam…