class Demo { Demo() { System.out.println("hi"); } Demo(int x) { System.out.println("welcome"); } Demo(int x,int y) { System.out.println("java"); } } public class Main { public static void main(String args[]) { Demo d=new Demo(); Demo d=new Demo(10); Demo d=new Demo(10,20); } }
hi
welcome
java
class Demo { Demo() { this(10); System.out.println("hi"); } Demo(int x) { System.out.println("welcome"); } Demo(int x,int y) { this(); System.out.println("java"); } } public class Main { public static void main(String args[]) { Demo d=new Demo(10,20); } }
welcome
hi
java