本帖最后由 HM王琦 于 2013-4-2 12:30 编辑
- interface Inter
- {
- public static final int NUM=3;
- public abstract void show();//在接口中定义抽象方法
- }
- class InterDemo implements Inter
- {
- public void show()
- {
- System.out.println("复写父类show方法");
- }
- }
- class InterfaceDemo
- {
- public static void main(String[] args)
- {
- InterDemo in=new InterDemo();
- System.out.println(in.show()+".."+Inter.NUM);//编译提示:java:43: 错误: 此处不允许使用 '空' 类型
- System.out.println(in.show()+".."+Inter.NUM);
-
- }
- }
复制代码 |