反射

获取class的三种方式

1、根据对象获取 对象.getClass

2、根据类获取 类名.class

3、根据全类名获取 class.forName(全类名)

你可能感兴趣的:(反射)