class MC {
private String name;
void methodA(MC mc){
System.out.println(mc.name);
}
}
Why am I able to access name variable in methodA? I am confused here, can someone please explain?
|
|
You can access it because
Here is some official documentation on this topic: http://download.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html |
||||
|
|
|
Because However, a subtle rule of visibility modifiers is that they control access for any code in that class to the members of the other objects of that same class. So all of the code in the Edit: The relevant section of the Java Language Specification is 6.6.1 Determining Accessibility:
|
|||
|
|
|
because you have accessed it from the scope it's private to. your private implementations and data will be private to (and accessible in) the scope (e.g. class) they have been declared in. |
|||||||||
|