Re: [問題] 有關於Ruby陣列的問題..
※ 引述《fuha (mimi)》之銘言:
: temp[1][1] = 3 => [[0,0],[0,3]]
: temp2[1][1] = 3 => [[0,3],[0,3]]
: 為什麼 temp 和temp2 的值會不一樣啊?????????
改一個值卻有兩樣東西被改到了,就要趕快猜其實那兩樣是指向同一個 instance
: ※ 發信站: 批踢踢實業坊(ptt.cc)
: ◆ From: 140.120.90.189
: 推 jtmh:temp2 中的兩個陣列其實是同一個,詳情請參考 Core API doc: 11/26
: → jtmh:http://www.ruby-doc.org/core/classes/Array.html#M002202 11/26
: 推 fuha:抱歉~他的說明和範例我不是很懂 可否再給點提示? thx 11/26
根據該說明:
> In the second it is created with size copies of obj
> (that is, size references to the same obj).
亦即每個元素會指向同一個 object
也就是說你的 temp 和 temp2 本身的寫法就是不等價的
不知道你對這部份是否有疑問?如果有的話……
temp = [[0,0],[0,0]]
這個的意思是 temp 是個 Array, 裡面有兩個 element,
每個 element 是各個獨立的 Array, 裡面又各有兩個 0 這個 Fixnum 的 element
temp2 = Array.new(2, [0,0])
這樣的話,temp2 是個 Array, 裡面有兩個 element,
每個 element 都指向你這邊寫的 [0,0] 這個 Array
而這個 Array 裡面有兩個 Fixnum 的 element
注意,因為他們全是指向這個 [0,0], 所以你改變他的值,
將使所有的 element 的值都改變
套句 C++ 的術語的話……這個就是 shallow copy 而非 deep copy...
抱歉跟 C++ 比較熟 :o
意思就是你只複製了指標,沒有複製內容
我寫成 Ruby code:
class Array
def self.shallow_new size, target
result = []
size.times{|i| result.push target }
result
end
def self.deep_new size, taget
result = []
size.times{|i| result.push taget.clone }
result
end
end
temp = Array.shallow_new 2, [0,0]
temp[1][1] = 3 # <= [[0,3],[0,3]]
temp = Array.deep_new 2, [0,0]
temp[1][1] = 3 # <= [[0,0],[0,3]]
大概就是這樣了
--
Hear me exalted spirits. Hear me, be you gods or devils, ye who hold
dominion here:
I am a wizard without a home. I am a wonderer seeking refuge.
Sacrifice
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 61.228.88.46
推
11/27 08:36, , 1F
11/27 08:36, 1F
→
11/27 08:36, , 2F
11/27 08:36, 2F
討論串 (同標題文章)
完整討論串 (本文為第 2 之 3 篇):
Ruby 近期熱門文章
PTT數位生活區 即時熱門文章