protected
当我在类 Zoo 上使用关键字时,我收到错误“删除无效修饰符” 。
protected class Zoo {
int x=5;
String coolMethod() {
return "Wow baby";
}
static Test t=new Test();
}
public class Test {
public static void main(String args[]) {
Test zoo=new Test();
//System.out.println(zoo.coolMethod());
//System.out.println(x);
//t.useMyCoolMethod();
//Testing v=new Testing();
//System.out.println(v.getValue());
}
我怎样才能解决这个问题?