首先,和楼主分享一下关于反射技术的一点观点:
反射技术:
其实就是动态加载一个指定的类,并获取该类中的所有的内容。
而且将字节码文件封装成对象,并将字节码文件中的内容都封装成对象,这样便于操作这些成员。
简单说:反射技术可以对一个类进行解剖。
反射的好处:大大的增强了程序的扩展性。
反射的第一步就是获取到指定的名称的字节码文件对象。 也就是Class对象。
获取这个Class对象。有三种方式:
1,通过每个对象都具备的方法getClass来获取。
弊端:必须要创建该类对象。才可以调用getClass方法。
2,每一个数据类型(基本数据类型和引用数据类型)都有一个静态的属性 class。
弊端:必须要先明确该类。
前两种方式不利于程序的扩展。因为都需要在程序使用具体的类来完成。
3,使用的Class类中的方法。静态的forName方法。
指定什么类名,就获取什么类字节码文件对象。
这种方式的扩展性最强。只要将类名的字符串传入,即可。
获取了字节码文件对象后,最终都需要创建指定类的对象。
创建对象的两种方式(其实就是对象在进行实例化时的初始化方式)
1,调用空参数的构造函数。
使用了Class类中的newInstance()方法。
2,调用带参数的构造函数。
先要获取指定参数列表的构造函数对象。
然后通过该构造函数的对象的newInstance(实际参数)进行对象的初始化。
综上所述,第二种方式,必须要先明确,具体的构造函数的参数类型。不便于扩展。
所以一般情况下,被反射的类,内部通常都会提供一个公有的空参数的构造函数。
再举个例子:
package cn.yjren.bean;
public class Person {
public Person(){
System.out.println("person run");
}
public Person(String name, int age) {
System.out.println(name + "....person run----" + age);
}
public void show(int num,String str) {
System.out.println(num+".......Person show run....."+str);
}
private void method(){
System.out.println("method run");
}
public static void function(){
System.out.println("function run");
}
public void demoFunc(){
System.out.println("demofunc run");
}
public void demo2(){
System.out.println("demo2 run");
}
}
通过反射获取构造器:
public class ReflectDemo2 {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
method_2();
}
/**
* 如何生成获取到字节码文件对象的实例对象。
* @throws Exception
*/
public static void method_1() throws Exception{
Class clazz = Class.forName("cn.yjren.bean.Person");
Object obj = clazz.newInstance();//该实例化对象的方法调用就是指定类中的空参数构造函数,给创建对象进行初始化。
// 当指定类中没有空参数构造函数时,该如何创建该类对象呢?请看method_2();
System.out.println(obj);
// Person p = new Person();
// System.out.println(p);
}
public static void method_2() throws Exception{
Class clazz = Class.forName("cn.yjren.bean.Person");
/*
* 既然类中没有空参数的构造函数。那么只有获取指定参数的构造函数。
* 用该函数来进行实例化。
*/
//获取一个带参数的构造器。
Constructor constructor = clazz.getConstructor(String.class,int.class);
//想要对对象进行初始化,构造器最清楚。
//使用构造器的方法newInstance();
Object obj = constructor.newInstance("zhagnsan",30);
System.out.println(obj);
/*//获取所有构造器。
Constructor[] constructors = clazz.getConstructors();
constructors = clazz.getDeclaredConstructors();
for(Constructor con : constructors){
System.out.println(con);
}
*/
}
}
通过构造器获取方法:
public class ReflectDemo3 {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
method_4();
}
/**
* 反射指定类中的方法。
* @throws Exception
*/
//获取类中所有的方法。
public static void method_1() throws Exception{
Class clazz = Class.forName("cn.yjren.bean.Person");
Method[] methods = clazz.getMethods();//获取的是该类中的公有方法和父类中的公有方法。
methods = clazz.getDeclaredMethods();//获取本类中的方法,包含私有方法。
for(Method method : methods){
System.out.println(method);
}
}
//获取指定方法;
public static void method_2() throws Exception{
Class clazz = Class.forName("cn.yjren.bean.Person");
//获取指定名称的方法。
Method method = clazz.getMethod("show", int.class,String.class);
//想要运行指定方法。当然是方法对象最清楚。
//为了让方法运行,调用方法对象的invoke方法即可。但是方法运行必须要明确所属的对象和具体的实际参数。
Object obj = clazz.newInstance();
method.invoke(obj, 39,"hehehe");
}
//想要运行私有方法。
public static void method_3() throws Exception{
Class clazz = Class.forName("cn.yjren.bean.Person");
//获取指定名称的方法。
//Method method = clazz.getMethod("method",null);
//想要获取私有方法。必须用getDeclearMethod();
Method method = clazz.getDeclaredMethod("method", null);
// 私有方法不知直接访问。因为权限不够。
//我非要访问。可以通过暴力的方式。
method.setAccessible(true);//一般很少用,因为私有就是隐藏起来,所以尽量不要访问。
//想要运行指定方法。当然是方法对象最清楚。
//为了让方法运行,调用方法对象的invoke方法即可。但是方法运行必须要明确所属的对象和具体的实际参数。
Object obj = clazz.newInstance();
method.invoke(obj);
}
//反射静态方法。
public static void method_4() throws Exception{
Class clazz = Class.forName("cn.yjren.bean.Person");
Method method = clazz.getMethod("function",null);
method.invoke(null,null);
}
}
|