Java / Constructor
What is the access modifier of the Default constructor?
It depends on the Class's access modifier. If the Class declared as public, then the default constructor access modifier will be public. If the class is protected, then default constructor is protected. The same rule applies for default access and private.
More Related questions...