在Java中,要使类方法受保护,您需要在方法声明前加上protected
关键字。受保护的方法(protected method)是一种只能被同一个包内的类或子类访问的方法。这意味着,如果一个方法是受保护的,它可以在同一个包中的其他类中被访问,也可以在不同包中的子类中被访问。
以下是一个示例:
// 文件名:ProtectedMethodExample.java
package com.example;
public class ProtectedMethodExample {
// 受保护的方法
protected void myProtectedMethod() {
System.out.println("This is a protected method.");
}
}
在这个例子中,myProtectedMethod
方法被声明为受保护的。它可以在同一个包(com.example)中的其他类中被访问,也可以在不同包中的子类中被访问。例如:
// 文件名:SubClassExample.java
package com.example.subclass;
import com.example.ProtectedMethodExample;
public class SubClassExample extends ProtectedMethodExample {
public void accessProtectedMethod() {
myProtectedMethod(); // 访问受保护的方法
}
}
在这个子类示例中,我们继承了ProtectedMethodExample
类,并通过accessProtectedMethod
方法访问了受保护的myProtectedMethod
方法。