getClass()与getName()和getSimpleName()的区别 getClass()和getSimpleName()的区别和作用
getClass()和getSimpleName()的区别和作用接口:package com.test;public interface Fruit {}一个实现类:package com.test;public class Apple implements Fruit {}基本测试类package com.test;