今天刚刚看到接口这部分,写了一个小程序,调试也过了,就是运行时间没有打印结果,这是怎么回事,请大神解答?- interface Inter
- {
- public static final int NUM = 8;
- public abstract void show();
- }
- class Test implements Inter
- {
- public void show()
- {
- System.out.println("test");
- }
- }
- class InterfaceDemo
- {
- public static void main(String[] args)
- {
- //Test t = new Test();
- //System.out.println(t.NUM);
- //System.out.println(Test.NUM);
- //System.out.println(Inter.NUM);
- System.out.println("doujm");
- }
- }
复制代码 |