Created
June 26, 2014 07:01
-
-
Save roop/5c7af3a89cb6c2390e12 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyClass { | |
var value: Int | |
init(value v: Int) { value = v } | |
} | |
var instanceOfMyClass = MyClass(value: 42) | |
var assignedInstance2 = instanceOfMyClass | |
assignedInstance2.value = 2 // Change the copied instance | |
instanceOfMyClass.value // 2: Original is also changed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment