LoginSignup
0
0

More than 5 years have passed since last update.

ruby インスタンス変数 自分用 メモ

Posted at

' attr_accessor :name'
クラスにattr_accessorの後に変数を宣言することで
自動的にインスタンス変数の値を参照したり、変更するメソッドを定義することができる

クラス変数は@@で始まり、クラスが持つ変数

インスタンス変数: @name
ローカル変数: name
メソッド: self.name

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0