0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Ruby] クラス、インスタンス変数、インスタンス、とか・・・

Last updated at Posted at 2020-06-16

Progate学習メモ
何がクラスでインスタンス変数でインスタンスか

クラス

.rb
class Menu
end

インスタンス変数

.rb
class Menu
  attr_accessor :name
  attr_accessor :price
end

これでMenuクラスのインスタンスにnameとpriceという情報を持たせることができる
attr_accessorについて、いただいたコメントがわかりやすいのでページ下部ご参照ください

インスタンス

クラスから生まれるもの

.rb
class Menu
  attr_accessor :name
  attr_accessor :price
end

# Menuクラスから生まれたmenu1というインスタンス
menu1 = Menu.new

# menu1というインスタンスに情報を持たせる
menu1.name = "パン"
menu1.price = "200"

参考:Progate

0
1
1

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?