- public interface Test{ //这个接口为什么不可以加上public?编译没错,运行错误
- public void test();
- }
-
- class Testp implements Test{
- public void test(){
- System.out.println("test");
- }
- }
- public class Text3 {
-
- public static void main(String[] args) {
- Testp t=new Testp();
- t.test();
- }
- }
复制代码 我想问下,interface不能被public修饰吗?
接口格式:[public]interface 接口名称 [extends父接口名列表]
public是默认的,为什么我写出来会报错? |
|