File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Can one object access the private variable of another object of the same class? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Can one object access the private variable of another object of the same class?" Watch "Can one object access the private variable of another object of the same class?" New topic
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?
 
Similar Threads
JavaRanch Rule Round-up Game?
Rules Roundup Question
Accessing private variable
Java Rule Round Up: Question 80
Private Variables