public class Main {
public static void main(String[] args) {
Some s=new SomeImpl();
s.doSome();
}
}
interface Some{
protected void doSome();
}
class SomeImpl implements Some{
public void doSome(){
System.out.println("做一些事");
}
}
这个 doSome();方法用的是protected修饰的,显示报错,。那为什么程序在eclipse里面运行可以输出“做一些事”? |