java 反射常用方法概览
测试类
public class Animal {
public boolean sex;
private int age;
public void eat(){
System.out.print("吃东西");
}
}
public class Dog extends Animal{
public int height;
private int weight;
//---------------构造方法-------------------
//(默认的构造方法)
Dog(String str){
System.out.println("(默认)的构造方法 s = " + str);
}
//无参构造方法
public Dog(){
System.out.println("调用了公有、无参构造方法执行了。。。");
}
//有一个参数的构造方法
public Dog(char name){
System.out.println("姓名:" + name);
}
//有多个参数的构造方法
public Dog(String name ,int age){
System.out.println("身高:"+height+" 重量:"+ weight);//这的执行效率有问题,以后解决。
}
//受保护的构造方法
protected Dog(boolean n){
System.out.println("受保护的构造方法 n = " + n);
}
//私有构造方法
private Dog(int age){
System.out.println("私有的构造方法 身高:"+ height);
}
@Override
public String toString() {
return "Dog{" +
"height=" + height +
", weight=" + weight +
", sex=" + sex +
'}';
}
//**************成员方法***************//
public void show1(String s){
System.out.println("调用了:公有的,String参数的show1(): s = " + s);
}
protected void show2(){
System.out.println("调用了:受保护的,无参的show2()");
}
void show3(){
System.out.println("调用了:默认的,无参的show3()");
}
private String show4(int age){
System.out.println("调用了,私有的,并且有返回值的,int参数的show4(): age = " + age);
return "xxxxx";
}
}
获取类的三种方法
//1、全类名
try {
Class class01 = Class.forName("com.example.javatest.reflect.Dog");
System.out.print(class01.getSimpleName());
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
//2、类名
Class class02 = Dog.class;
System.out.print(class02.getSimpleName());
//3、对象
Class class03 = new Dog().getClass();
System.out.print(class03.getSimpleName());
通过class可以直接调用newInstance,进行创建对象
//获取类型之后,可以通过类型创建对象
try {
Dog o = (Dog)class02.newInstance();//调用的是无参数的构造方法。
o.eat();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
注意点
- 上面调用的默认是无参数的构造方法,如果你把这个默认构造方法声明成私有,那么就会有如下错误:
java.lang.IllegalAccessException: can not access a member of class com.example.javatest.reflect.Dog with modifiers "private"
此处构造方法调用方式是:类对象,直接调用自己内部的方法Dog o = (Dog)class02.newInstance()
如果想调用有参数的构造方法,就需要先反射获取对应的构造方法,进行使用。
获取类的构造方法,并创建对象
//1.加载Class对象
Class clazz = Class.forName("com.example.javatest.reflect.Dog");
//2.获取所有公有构造方法
System.out.println("**********************所有公有构造方法*********************************");
Constructor[] conArray = clazz.getConstructors();
for(Constructor c : conArray){
System.out.println(c);
}
System.out.println("************所有的构造方法(包括:私有、受保护、默认、公有)***************");
conArray = clazz.getDeclaredConstructors();
for(Constructor c : conArray){
System.out.println(c);
}
System.out.println("*****************获取公有、无参的构造方法*******************************");
Constructor con = clazz.getConstructor(null);
//1>、因为是无参的构造方法所以类型是一个null,不写也可以:这里需要的是一个参数的类型,切记是类型
//2>、返回的是描述这个无参构造函数的类对象。
System.out.println("con = " + con);
//调用构造方法
Object obj = con.newInstance();
// System.out.println("obj = " + obj);
// Student stu = (Student)obj;
System.out.println("******************获取私有构造方法,并调用*******************************");
con = clazz.getDeclaredConstructor(char.class);
System.out.println(con);
//调用构造方法
con.setAccessible(true);//暴力访问(忽略掉访问修饰符)
obj = con.newInstance('旺');
输出结果:
**********************所有公有构造方法*********************************
public com.example.javatest.reflect.Dog(java.lang.String,int)
public com.example.javatest.reflect.Dog(char)
public com.example.javatest.reflect.Dog()
************所有的构造方法(包括:私有、受保护、默认、公有)***************
private com.example.javatest.reflect.Dog(int)
protected com.example.javatest.reflect.Dog(boolean)
public com.example.javatest.reflect.Dog(java.lang.String,int)
public com.example.javatest.reflect.Dog(char)
public com.example.javatest.reflect.Dog()
com.example.javatest.reflect.Dog(java.lang.String)
*****************获取公有、无参的构造方法*******************************
con = public com.example.javatest.reflect.Dog()
调用了公有、无参构造方法执行了。。。
******************获取私有构造方法,并调用*******************************
public com.example.javatest.reflect.Dog(char)
姓名:旺
注意点
- 获取有参数构造方法,传入的是方法参数的类型,而不是具体的参数。
- 如果要调用私有的构造方法注意设置 con.setAccessible(true);//暴力访问(忽略掉访问修饰符)
- 此处构造方法的调用方式是:构造方法对象,调用自己的方法:obj = con.newInstance('旺');
获取成员变量,并修改
private static void getField() throws ClassNotFoundException, NoSuchFieldException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
Class stuClass = Class.forName("com.example.javatest.reflect.Dog");
//2.获取字段
System.out.println("************获取所有公有的字段(包括父类公有字段)********************");
Field[] fieldArray = stuClass.getFields();
for(Field f : fieldArray){
System.out.println(f);
}
System.out.println("************获取所有的字段(包括私有、受保护、默认的)********************");
fieldArray = stuClass.getDeclaredFields();
for(Field f : fieldArray){
System.out.println(f);
}
System.out.println("*************获取公有字段**并调用***********************************");
Field f = stuClass.getField("height");
System.out.println(f);
//获取一个对象
Object obj = stuClass.getConstructor().newInstance();
//为字段设置值
f.set(obj, 111);//为对象中的height属性赋值--》stu.height = 111
//验证
Dog stu = (Dog)obj;
System.out.println("验证height:" + stu.height);
System.out.println("**************获取私有字段****并调用********************************");
f = stuClass.getDeclaredField("weight");
System.out.println(f);
f.setAccessible(true);//暴力反射,解除私有限定
f.set(obj, 188);
System.out.println("验证weight:" + stu);
}
返回结果
************获取所有公有的字段(包括父类公有字段)********************
public int com.example.javatest.reflect.Dog.height
public boolean com.example.javatest.reflect.Animal.sex
************获取所有的字段(包括私有、受保护、默认的)********************
public int com.example.javatest.reflect.Dog.height
private int com.example.javatest.reflect.Dog.weight
*************获取公有字段**并调用***********************************
public int com.example.javatest.reflect.Dog.height
调用了公有、无参构造方法执行了。。。
验证height:111
**************获取私有字段****并调用********************************
private int com.example.javatest.reflect.Dog.weight
验证weight:Dog{height=111, weight=188, sex=false}
获取成员方法,并调用
private static void getMethod() throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
//1.加载Class对象
Class stuClass = Class.forName("com.example.javatest.reflect.Dog");
//2.获取所有公有方法
System.out.println("***************获取所有的”公有“方法(包括父类公有方法)*******************");
stuClass.getMethods();
Method[] methodArray = stuClass.getMethods();
for(Method m : methodArray){
System.out.println(m);
}
System.out.println("***************获取所有的方法,包括私有的*******************");
methodArray = stuClass.getDeclaredMethods();
for(Method m : methodArray){
System.out.println(m);
}
System.out.println("***************获取公有的show1()方法*******************");
Method m = stuClass.getMethod("show1", String.class);
System.out.println(m);
//实例化一个Student对象
Object obj = stuClass.getConstructor().newInstance();
m.invoke(obj, "哈哈哈哈啊哈");
System.out.println("***************获取私有的show4()方法******************");
m = stuClass.getDeclaredMethod("show4", int.class);
System.out.println(m);
m.setAccessible(true);//解除私有限定
Object result = m.invoke(obj, 20);//需要两个参数,一个是要调用的对象(获取有反射),一个是实参
System.out.println("返回值:" + result);
}
输出结果
***************获取所有的”公有“方法(包括父类公有方法)*******************
public java.lang.String com.example.javatest.reflect.Dog.toString()
public void com.example.javatest.reflect.Dog.show1(java.lang.String)
public void com.example.javatest.reflect.Animal.eat()
public final void java.lang.Object.wait(long,int) throws java.lang.InterruptedException
public final native void java.lang.Object.wait(long) throws java.lang.InterruptedException
public final void java.lang.Object.wait() throws java.lang.InterruptedException
public boolean java.lang.Object.equals(java.lang.Object)
public native int java.lang.Object.hashCode()
public final native java.lang.Class java.lang.Object.getClass()
public final native void java.lang.Object.notify()
public final native void java.lang.Object.notifyAll()
***************获取所有的方法,包括私有的*******************
public java.lang.String com.example.javatest.reflect.Dog.toString()
protected void com.example.javatest.reflect.Dog.show2()
void com.example.javatest.reflect.Dog.show3()
public void com.example.javatest.reflect.Dog.show1(java.lang.String)
private java.lang.String com.example.javatest.reflect.Dog.show4(int)
***************获取公有的show1()方法*******************
public void com.example.javatest.reflect.Dog.show1(java.lang.String)
调用了公有、无参构造方法执行了。。。
调用了:公有的,String参数的show1(): s = 哈哈哈哈啊哈
***************获取私有的show4()方法******************
private java.lang.String com.example.javatest.reflect.Dog.show4(int)
调用了,私有的,并且有返回值的,int参数的show4(): age = 20
返回值:xxxxx