8
Answers

What is the default Constructor of a Class?

Mazhar Pasha

Mazhar Pasha

7y
293
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)