I have a class which consist of three constructors ,my requiremt is that i want to call all of the constructors using one single object creation.Is it possible??
Lets say
Class A{
A(int a){
}
A(int a,int b){
}
A(int a,int b,int c){
}
I want to call all the constructors using one object creation ,how to do that???