what is the difference between the "protected and default"
modifiers?
Answer Posted / gsk
Protected:
The access specifier 'protected' can be applied to a class that is a member of an enclosing class, but can not be applied to a local class or a class that is not nested inside another class. Members are accessible only to the class and its subclass(es). Subclass can exists within the same package or any other package.
Accessibility of method or field:
Accessible within the class: Yes
Accessible to subclass within the package: Yes
Accessible to subclass outside the package: Yes
Accessible to any other class within the package: Yes
Accessible to any other class outside the package: Yes
Default (no specifier): We can have a class or method with out specifier. Default members of a class are accessible only to the class and other classes within that package. If we do not set access to specific level, then such a class, method, or field will be accessible from inside the same package to which the class, method, or field belongs, but not from outside this package.
Accessibility of method or field:
Accessible within the class: Yes
Accessible to subclass within the package: Yes
Accessible to subclass outside the package: No
Accessible to any other class within the package: Yes
Accessible to any other class outside the package: Yes
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Can we write multiple catch blocks under single try block?
What about main() method in java ?
What is null mean in java?
Explain about java sdk?
How do you convert boolean to boolean?
What is jvm? Why is java called the platform independent programming language?
Can we store variables in local blocks?
What is a singleton puppy?
What is the base class of all exception classes in java?
How do you sort words in java?
How are multiple inheritances done in Java?
What is nan inf?
What do you meant by active and passive objects?
What is the order of arraylist in java?
When should you use arraylist and when should you use linkedlist?