/** * Example of using the keywork 'this' * Uses two other classes, ThisExample.java and SecondClass.java * Hunter * */ public class ThisDriver { public static void main(String [] args) { ThisExample te = new ThisExample(5); } }