Top "Parameterized-constructor" questions

Any way to call the default constructor from a parameterized constructor?

Suppose, I have the following code class C { int i; String s; C(){ System.out.println("In main constructor"); // Other …

java default-constructor parameterized-constructor