search
HomeJavajavaTutorialDetailed explanation of Java basic access permission examples

Detailed explanation of Java basic access permission examples

Jun 26, 2017 am 11:39 AM
javaaboutBasePermissionsaccess

1. Review of access modifiers

==public: The classes, properties, and methods modified by it can not only be accessed across classes, but also across packages

==private: Can modify data members, constructors, methods, but cannot modify classes. The members modified by it can only be accessed by the class itself and cannot be accessed by subclasses

==protected: Can modify data members, constructors, and methods, but cannot modify classes. It can be accessed by members of this class, the same package, or its subclasses (if it is a subclass, it can cross packages)

==Default: No Add any modifier to only allow access in the same package

2. Code example

##

package dog;
public class Dog {
    // 公共的
    public void publicMethod() {
        System.out.println("publicMethod");
    }
    // 保护的
     protected void protectedMethod() { // 被声明为protected的方法,可以被子类继承
         System.out.println("protectedMethod");
     }

     // 默认的
     void defaultMethod() {
         System.out.println("defaultMethod");
     }

     // 私有的
     private void privateMethod() { // 这个方法只可以在类内部被调用
         System.out.println("privateMethod");
     }
 }

class T {
     public static void main(String[] args) {
         Dog d = new Dog(); // 可以访问
         d.publicMethod(); // 可以访问
         d.protectedMethod(); // 可以访问
         d.defaultMethod(); // 可以访问
         // d.privateMethod(); //私有的方法,不能被在类外访问
     }
 }

//在上例的基础上,演示跨包的情况
package cat; //和dog 包不在一起

import dog.Dog;

public class Cat {
    void test() {
        Dog dog = new Dog();

        dog.publicMethod(); // 可以
        // dog.protectedMethod(); 不可以
        // dog.privateMethod(); 不可以
        // dog.defaultMethod(); 不可以
    }
}

##
//在前例的基础上,演示子类中的访问情况
class NiceDog extends Dog {
    void test() {
        Dog dog = new Dog();
        dog.publicMethod(); // 可以
        protectedMethod(); // 被protected修饰的成员,可以被继承过来,并这样调用
        // dog.protectedMethod(); 不可以
        // dog.privateMethod(); 不可以
        // dog.defaultMethod(); 不可以

    }
}

The above is the detailed content of Detailed explanation of Java basic access permission examples. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?Mar 17, 2025 pm 05:46 PM

The article discusses using Maven and Gradle for Java project management, build automation, and dependency resolution, comparing their approaches and optimization strategies.

How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?Mar 17, 2025 pm 05:45 PM

The article discusses creating and using custom Java libraries (JAR files) with proper versioning and dependency management, using tools like Maven and Gradle.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?Mar 17, 2025 pm 05:43 PM

The article discusses using JPA for object-relational mapping with advanced features like caching and lazy loading. It covers setup, entity mapping, and best practices for optimizing performance while highlighting potential pitfalls.[159 characters]

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.