| Author |
Can one object access the private variable of another object of the same class?
|
Mike Ngo
Ranch Hand
Joined: Oct 16, 2006
Posts: 89
|
|
I came across this question in the javaranch mock question. #208 Can one object access the private variable of another object of the same class? Answer: Yes. Private means �private to the class�. Not private to the object. So two objects of the same class could access each other�s private data. Can someone explain or give an example? I don't see how it can be done.
|
 |
Keith Lynn
Ranch Hand
Joined: Feb 07, 2005
Posts: 2341
|
|
|
|
 |
Mike Ngo
Ranch Hand
Joined: Oct 16, 2006
Posts: 89
|
|
|
Thanks.
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Can one object access the private variable of another object of the same class?
|
|
|