-
-
-
-
-
-
-
-
//this.disp();
}
void t3()
{
System.out.println("Enter to t3 void");
}
}
On what situation void type constructors are used?">Class t3{ int i; static public void main( String a[]) { int j=8; t3 t= new t3(); new t3().disp(j); } //constructor overloading t3() { System.out.println("Enter to t3"); //this.disp(); } void t3() { System.out.println("Enter to t3 void"); }}On what situation void type constructors are used?
-
-
-
-
-
-
-
-
-
-
-
-
Core Java Interview Questions
Ans