public class eg28_SuperClass1 { //constructor #1 //super class constructor always executes before the subclass constructor //constructor has no return type public eg28_SuperClass1() { System.out.println("This is the SUPERclass constructor."); } //step 2 demo - after editing SubClass1.java //constructor #2 public eg28_SuperClass1(int arg) { System.out.println("The following argument was passed to the superclass constructor: "+arg); } }