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】attr_readerとattr_writerの違いがわからなくなる...

Last updated at Posted at 2025-03-25

まず、結論から。

宣言 読み取り 書き込み
attr_reader できる できない
attr_writer できない できる
attr_accessor できる できる

具体例

attr_reader

class Person
  attr_reader :name

  def initialize(name)
    @name = name
  end
end

person = Person.new("Taro")
puts person.name     # => "Taro"
person.name = "Jiro" # => エラー!(書き込みできない)

attr_writer

class Person
  attr_writer :name

  def initialize(name)
    @name = name
  end
end

person = Person.new("Taro")
puts person.name     # => エラー!(読み取りできない)
person.name = "Jiro" # => OK!

まとめ

Railsで使うならattr_accessorになっちゃうから、あまり使わないよね。

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?