例如:
Student
子类访问具有protected
属性的Person
类:
class People { protected String name = "cjavapy"; // People 属性 public void study() { // People 方法 System.out.println("好好学习"); } } class Student extends People { private String className = "Python"; // Student 属性 public static void main(String[] args) { // 创建 student 对象 Student student = new Student(); // 调用student的study() 方法 (从 People 类继承) student student.study(); // 显示name属性(从 People 类继承)的值和Student类的className的值 System.out.println(student.name + " " + student.className); } }
1、定义和用法
protected
关键字是用于属性,方法和构造函数的访问修饰符,使它们可以在同一包和子类中访问。