LoginSignup
1
1

More than 5 years have passed since last update.

Ruby クラスのメモ

Last updated at Posted at 2015-06-13

オブジェクトはクラスの中に入ったモノ
メソッドはオブジェクトに機能をもたせたもの

class名は大文字で始まる文字列。class end の中に記述する
class Player
end

クラスからオブジェクトを生成する。
クラス名.new
p = Player.new

クラスからオブジェクトを生成することを、
インスタンス化
.newのようにクラス自体から直接呼び出すメソッドのことを
クラスメソッド

1
1
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
1
1