computer science - 2 variables pointing the same address in memory name -
what name of situation 2 variables pointing same location in memory, , change in 1 of them, change other?
example:
string = "1"; string b = a; b = "3"; print(a); // print "3"
the word you're looking aliasing .
Comments
Post a Comment