Skip to content

Commit

Permalink
Updated chapter11.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Snowcat8436 committed Jun 14, 2014
1 parent 2e44075 commit d3c510b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapter11.txt
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ var names = ["Mohsen", "Hilary", "Justyn", "Amy", "Rich", "Graham", "Vic"]
var copiedNames = names.copy()
```
여러분은 둘중 하나의 배열 요소의 값을 수정하고 다른 배열에서의 요소값을 확인함으로써 `names` 배열의 복제가 제대로 이루어졌는지 확인하실수 있습니다.
만약 여러분이 `copiedNames` 배열의 첫번째 요소의 값을 `Mohsen`에서 `"Mo"`로 수정해도 `names`배열은 여전히 복제가 일어나기전의 원래 값인 "Mohsen"을 반환합니다.
만약 여러분이 `copiedNames` 배열의 첫번째 요소의 값을 `Mohsen`에서 `"Mo"`로 수정해도 `names`배열은 여전히 복제가 일어나기전의 원래 값인 `"Mohsen"`을 반환합니다.
```
copiedNames[0] = "Mo"
println(names[0])
Expand Down

0 comments on commit d3c510b

Please sign in to comment.