Arrays misbehaving

后端 未结 1 1044
心在旅途
心在旅途 2020-12-12 06:06

Here\'s the code:

# a = Array.new(3, Array.new(3))
a = [[nil,nil,nil],[nil,nil,nil]]
a[0][0] = 1
a.each {|line| p line}

With the output:

相关标签:
1条回答
  • 2020-12-12 06:30

    The commented line is assigning three of the same reference to the array, so a change to one array will propagate across the other references to it.

    As for the 2 arrays vs 3, that's simply a matter of the first line specifying 3 as its first parameter and only specifying 2 array literals in the second line.

    To create the nested arrays without having any shared references:

    a = Array.new(3) {Array.new(3)}
    

    When passed a block ({...} or do ... end), Array.new will call the block to obtain the value of each element of the array.

    0 讨论(0)
提交回复
热议问题