1、常用方法
方法名 | 功能说明 |
---|---|
static Class.forName(String name) | 返回指定类名的Class对象 |
newInstance() | 根据对象的class新建一个对象 |
getName() | 返回String形式的该类的名称 |
getSuperclass() | 获取继承的父类 |
getInterfaces() | 获取继承的接口 |
getClassLoader() | 获得类的类加载器 |
getConstructors() | 获得所有的构造函数 |
getMethods() | 获得公共的方法 |
getDeclaredMethods() | 获取当前类的所有方法 |
2、获取Class的几种方式
package com.hejin.reflection;
/**
* @Description TODO
* @Author Administrator
* @Date 2020/11/29 20:27
*/
public class Test03 {
public static void main(String[] args) throws ClassNotFoundException {
Person person = new Student();
System.out.println("这个人是:" + person.name);
/**
* 1、通过getClass获得
*/
Class c1 = person.getClass();
System.out.println(c1.hashCode());
/**
* 2、通过Class.forName获得
*/
Class c2 = Class.forName("com.hejin.reflection.Student");
System.out.println(c2.hashCode());
/**
* 3、类名.class
*/
Class c3 = Student.class;
System.out.println(c3.hashCode());
/**
* 4、基本内置属性的包装类都有Type属性
*/
Class type = Integer.TYPE;
System.out.println(type);
/**
* 获得父类类型
*/
Class c5 = c1.getSuperclass();
System.out.println(c5);
}
}
class Person{
public String name;
public Person(String name) {
this.name = name;
}
public Person() {
}
@Override
public String toString() {
return "Person{" +
"name='" + name + '\'' +
'}';
}
}
class Student extends Person{
public Student(){
this.name = "学生";
}
}
class Teacher extends Person{
public Teacher(){
this.name = "老师";
}
}
结果
这个人是:学生
356573597
356573597
356573597
int
class com.hejin.reflection.Person
Process finished with exit code 0