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

RUBYのアクセサメソッドについて

Posted at

スクリーンショット 2024-11-01 231941.png
RUBYではsetterメソッドとgetterメソッドを上記のように書くことができる。
スクリーンショット 2024-11-01 232517.png
上記のようにattr_accessorメソッドを使うことによりsetterメソッドとgetterメソッドを使うと長くなってしまうコードを同じ意味で上記のようなスマートなコードで書くことができます。
スクリーンショット 2024-11-01 233120.png
また、インスタンス変数の内容を読み取りにしたい場合はattar_accessorの代わりにattar_readerメソッドを使うことにより実現できます。
スクリーンショット 2024-11-01 233525.png
書き込み専用にしたい場合はattar_writerメソッドを使い上記のように書くことができます。
スクリーンショット 2024-11-01 233849.png
カンマで複数の引数を渡すことにより複数のインスタンス変数に対するアクセサメソッドを定義することができます。

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