issues
search
surfmuggle
/
Cubert
To become a jedi one must start as a novice
BSD 3-Clause "New" or "Revised" License
2
stars
0
forks
source link
5.4 Objects and references
#46
Open
surfmuggle
opened
3 years ago
surfmuggle
commented
3 years ago
[ ] A constructor call returns a reference to an object. A reference is information about the location of object data.
[ ] Assigning a reference type variable copies the reference
Person anna = new Person()
and
Person betti = anna
.
Person anna = new Person()
andPerson betti = anna
.