今天看视频看到接口了 有地方不太明白 望大家指教- interface Demo
- {
- public static final int NUM=4;
- public abstract void show1();
- public abstract void show2();
- }
- class DemoImpl implements Demo
- {
- public void show1()
- {
- }
- public void show2()
- {
- }
- }
- class InterfaceDemo
- {
- public static void main(String[] args)
- {
- DemoImpl d=new DemoImpl();
- System.out.println(d.NUM);
- System.out.println(DemoImpl.NUM);
- System.out.println(Demo.NUM);
- }
- }
复制代码 其中因为NUM是静态的,可以用类名调用 d.NUM和Demo.NUM我明白 但剩下了DemoImpl.NUM不太明白
|