Java program to call an Instance Initializer Block using the anonymous object
belongs to collection: Java Instance Initializer Block Programs
All Answers
total answers (1)
belongs to collection: Java Instance Initializer Block Programs
total answers (1)
Program/Source Code:
The source code to call an Instance Initializer Block using an anonymous object is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created two classes Sample and Main. The Sample class contains an IIB (Instance Initializer Block) and a constructor.