次のコードが与えられます:
class MagicList
def items=(array)
@items = array.map{|x| x*2}
end
def items
@items
end
end
list = MagicList.new
returns = list.items=([1, 2, 3])
puts returns.inspect # => [1, 2, 3]
puts list.items.inspect # => [2, 4, 6]
と同様に両方がこの値を返すため、の値はreturns
であると予想しました。なんで?[2, 4, 6]
@items
array.map{|x| x*2}
[1, 2, 3]