1 2 3 4 5 6 7 8 9
public class Bottom2 extends Top2 { public Bottom2() { super(); } public static void main(String[]argv) { new Bottom2(); } }