/** * Example of using the keyeword this * Works with SecondClass.java * Hunter * */ public class ThisExample { private int myInt; public ThisExample(int myInt) { this.myInt = myInt; SecondClass sc = new SecondClass(this); } public int getInt() { return myInt; } }