Java 反射篇——获取Class对象
Java 反射篇——获取Class对象
// 1. 对象获取,调用Student类的父类方法getClass
Student stu1 = new Student();
Class<? extends Student> stu1Class = stu1.getClass();
// 2.类名获取,包括每个类型(基本、引用类型)
Class<Student> studentClass = Student.class;
// 3.Class类的静态方法forName(字符串的类名)[常用]
Class<?> stu2 = Class.forName("com.zhang.reflect.Student");
本文来自博客园,作者:ElloeStudy,转载请注明原文链接:https://www.cnblogs.com/ElloeStudy/p/16064005.html