0
0

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 1 year has passed since last update.

100日後くらいに個人開発するぞ!day062

Posted at

今日はクラスメソッドを学んでみた!

image.png

「Ruby 学習レッスン V」コースを修了!

image.png

今日の学び

クラスメソッドの定義

  • クラスメソッドはdef クラス名.メソッド名とすることで定義できる
      • class Menu
      • def Menu.is_today_sunday?
      • 処理
      • end
  • インスタンスメソッドとの違いはメソッド名の前にクラス名を書く必要がある点

クラスメソッドを呼び出す

  • クラスメソッドはクラス名.メソッド名で呼び出すことができる
      • class Menu
      • def Menu.is_today_sunday?
      • 処理
      • end
      • puts is_today_sunday?
  • クラスメソッドはクラスの中でも同じように呼び出すことができる
    • 備考:インスタンスに対して呼び出すメソッドはインスタンスメソッド
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?