How to invoke a function in a class which is having private constructor. Eg: Code: class A { private A(){} public void fun(int a ) { ................... ................. } }; In this example if we want to invoke fun(int), how can we do that?
You already have a discussion going at Private Constructors. Please do not create the same thread over and over again,