8
Answers

What is the default Constructor of a Class?

Photo of Mazhar Pasha

Mazhar Pasha

8y
819
1
What is the default Constructor of a Class?
 
If I have a Class  and constructor as  like below.
 
public class  Employee
{
   Employee ()
   { 
   }
 
In above code , What is the access modifiers for constructor?

Answers (8)