In Java, what happens when you have a method with an unspecified visibility keyword?

前端 未结 3 1284
萌比男神i
萌比男神i 2021-01-02 04:20

I have been working with android for a few years now, not once have I had a teacher or anyone to tell me what to do. This whole time I have wondered to myself this.

3条回答
  •  执念已碎
    2021-01-02 05:06

    Java has four levels of visibility: public, protected, (default), private

    1. Visible to the package. the default. No modifiers are needed.
    2. Visible to the class only (private).
    3. Visible to the world (public).
    4. Visible to the package and all subclasses (protected).

    enter image description here

    Default Access Modifier - No keyword:

    Default access modifier means we do not explicitly declare an access modifier for a class, field, method etc.

    A variable or method declared without any access control modifier is available to any other class in the same package. The default modifier cannot be used for methods, fields in an interface.

    Private Access Modifier - private:

    Methods, Variables and Constructors that are declared private can only be accessed within the declared class itself.

    Private access modifier is the most restrictive access level. Class and interfaces cannot be private.

    Variables that are declared private can be accessed outside the class if public getter methods are present in the class.

    Using the private modifier is the main way that an object encapsulates itself and hide data from the outside world.

    Public Access Modifier - public:

    A class, method, constructor, interface etc declared public can be accessed from any other class. Therefore fields, methods, blocks declared inside a public class can be accessed from any class belonging to the Java Universe.

    However if the public class we are trying to access is in a different package, then the public class still need to be imported.

    Because of class inheritance, all public methods and variables of a class are inherited by its subclasses.

    Protected Access Modifier - protected:

    Variables, methods and constructors which are declared protected in a superclass can be accessed only by the subclasses in other package or any class within the package of the protected members' class.

    The protected access modifier cannot be applied to class and interfaces. Methods, fields can be declared protected, however methods and fields in a interface cannot be declared protected.

    Protected access gives the subclass a chance to use the helper method or variable, while preventing a nonrelated class from trying to use it.

提交回复
热议问题