A
Alan
On the book C# for Experienced Programmer by Deitel, page 152, Software
Engineering Observation 5.13:
'When one object of a class has a reference to another object of the same
class, the first object can access all the second object's data and methods
(including those that are private)'
Why?
I am not sure does that refers to:
1) The first object itself is pointing to the second object
OR
2) The first object has a member which is pointing to the second object ?
Engineering Observation 5.13:
'When one object of a class has a reference to another object of the same
class, the first object can access all the second object's data and methods
(including those that are private)'
Why?
I am not sure does that refers to:
1) The first object itself is pointing to the second object
OR
2) The first object has a member which is pointing to the second object ?