2

次のコードがあるとします。

  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 = "料理クラブ"

4

1 に答える 1

4

答えはその 1 です。どうすればチョコレートを手に入れることができますか?

#2 - There is no attr_accessor or attr_writer for comments
#3 - There is no attr_accessor or attr_reader for comments
#4 - There is no attr_accessor or attr_writer for title
于 2012-10-08T19:19:19.517 に答える