| 13 | �Լ�д�ӿڵ����ݵ�ʱ����ЩĬ�����η����ϡ� |
| 14 | */ |
| 15 | interface Animal { |
| 16 | //int num = 10; |
| 17 | //final int num2 = 20; |
| 18 | public static final int num = 10; |
| 19 | |
| 20 | //public Animal() {} |
| 21 | |
| 22 | public abstract void show(); |
| 23 | |
| 24 | //public void method() {} |
| 25 | |
| 26 | //void method(); |
| 27 | } |
| 28 | |
| 29 | class Dog implements Animal { |
| 30 | /* |
nothing calls this directly
no outgoing calls
no test coverage detected