Enlist access specifiers available in Java?

JANAKI NAIDU PUNNANA
JANAKI NAIDU PUNNANA

Posted On: Jan 07, 2021

 

The access specifiers available in JAVA are listed below:

private: The accessibility of a private modifier is only within the class. It cannot be accessible, outside the class.

default: The accessibility of a default modifier is only within the package. It cannot be accessible, outside the package. In the case of the non-specify access level, it will be the default.

protected: The accessibility of a protected modifier is within the package and outside the package through child class. It can be accessible by only child class but cannot be accessible, outside the package

public: The accessibility of a public modifier is everywhere. It can be accessible, within the class, outside the class, within the package, and outside the package.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Java inheritance interview questions

    Explain Inheritance in Java?

    Inheritance is one of the most important pillars of the OOPs (Object Oriented programming system). Inheritance in Java is a mechanism by which one class acquires all the properties and behaviors of an...

    Java inheritance interview questions

    Enlist diffrent types of Inheritance supported by Java?

    The various kinds of inheritance supported by Java.Single Inheritance: Single Inheritance is the easy inheritance of all, while a group lengthens another group (Simply one class) then one cal...

    Java inheritance interview questions

    What is the difference between Inheritance and Encapsulation?

    The major difference between Inheritance and Encapsulation are as follows -Inheritance EncapsulationInheritance is the process or mechanism by which you can acquire the properties and b...