This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package mrbear; | |
/** | |
* | |
* @author MrBear | |
*/ | |
public class MrBear | |
{ | |
private String world = "The world."; | |
public class FirstInner | |
{ | |
public void printWorld() | |
{ | |
// ambiguous | |
System.out.println(world); | |
} | |
} | |
public class SecondInner | |
{ | |
public void printWorld() | |
{ | |
// not ambiguous | |
System.out.println(MrBear.this.world); | |
} | |
} | |
} |
I didn't know that could work.
References
- Nested Classes - The Java Tutorials
- http://docs.oracle.com/javase/tutorial/java/javaOO/nested.html
No comments:
Post a Comment