Write a Java Program to implement private constructors
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
class Test { // create private constructor private Test () { System.out.println("This is a private constructor."); } // create a public static method public static void instanceMethod() { // create an instance of Test class Test obj = new Test(); } } class Main { public static void main(String[] args) { // call the instanceMethod() Test.instanceMethod(); } } |