What is difference between Private and Static Constructor?
sudhir kumar
In my opinion, private are used with in the class only where it was declared and static methods can be used any where by using static member.
Private Constructor - This is the constructor whose access modifier is private. private constructor is used to prevent a class to be instantiated. But, if a class has other public constructors, then that can be instantiated. A class can have multiple private constructor and can call it by another constructor.For example:- Class A{ int a; private A() { } public A(int b) : A() // Calling private constructor by another constructor. { this.a=b; }}Static Constructor :- Static constructor is used to initialize static members of a class. It is called by CLR, not by creating instance of the class. As it is called by CLR, it is not certain when it is called. But it is called when class is loaded. It can not be explicitly called by code. Static constructor has no any parameter. A class can have only one static constructor.
Static Constructor
1)A static constructor is called before the first instance is created. i.e. global initializer.
Whereas Private constructor is called after the instance of the class is created.
2)Static constructor will be called first time when the class is referenced. Static constructor is used to initialize static members of the class.
Static members will not be initialized either by private or public constructor.
3)The static constructor will only be executed once.
The private constructor will be executed each time it is called.
Sorry to all, I made a mistake on my previous code in line 7. Please correct this.For example:- Class A{ int a; private A() { } public A(int b) : this() // Calling private constructor by another constructor. { this.a=b; }}
Normally one uses the private constructor to create a singleton instance of a class,
1. Static constructor is called before the first instance of class is created, wheras private constructor is called after the first instance of class is created.
2. Static constructor will be executed only once, whereas private constructor is executed everytime, whenever it is called.