次のコードがあるとします。
class Book
attr_accessor :author
attr_reader :title
attr_writer :comments
def initialize(author, title)
@author = author
@title = title
@comments = []
end
end
book = Book.new("Chuck Palahniuk", "Fight Club")
次のコード スニペットのうち、有効なものはどれですか?
1.「#{book.title} は #{book.author} によって書かれました。」
2.book.comments << "#{book.title} は良い本でした"
book.comments.each { |コメント| コメントを入れます}
book.title = "料理クラブ"