package constructors; class M { int i; M() { System.out.println("I am in M, No argument Constructor"); this(10); } M(int i) { this.i = i; System.out.println("I am in M, Constructor with Argument"); } } public class TestConstructor3 { M m = new M(); }