Java反射机制及实例

在研究抽象工厂模式的时候,发现可以使用反射机制改造该模式,于是学习下~
http://blog.csdn.net/qq924862077/article/details/74348488?locationNum=2&fps=1

反射是Java语言的一个很重要的特征,它使得Java具体了“动态性”。

在Java运行时环境中,对于任意一个类,能否知道这个类有哪些属性和方法?对于任意一个对象,能否调用它的任意一个方法?答案是肯定的。这种动态获取类的信息以及动态调用对象的方法的功能来自于Java 语言的反射(Reflection)机制。

  • Java反射机制注意提供下列功能

在运行时判断任意一个对象所属的类
在运行时构造任意一个类的对象
在运行时判断任意一个类所具有的成员变量和方法
在运行时调用任意一个对象的方法

Reflection 是Java被视为动态(或准动态)语言的一个关键性质。这个机制允许程序在运行时透过Reflection APIs取得任何一个已知名称的class的内部信息,包括其modifiers(诸如public, static 等等)、superclass(例如Object)、实现之interfaces(例如Serializable),也包括fields和methods的所有信息,并可于运行时改变fields内容或调用methods。

一般而言,开发者社群说到动态语言,大致认同的一个定义是:“程序运行时,允许改变程序结构或变量类型,这种语言称为动态语言”。从这个观点看,Perl,Python,Ruby是动态语言,C++,Java,C#不是动态语言。

尽管在这样的定义与分类下Java不是动态语言,它却有着一个非常突出的动态相关机制:Reflection。这个字的意思是“反射、映象、倒影”,用在Java身上指的是我们可以于运行时加载、探知、使用编译期间完全未知的classes。换句话说,Java程序可以加载一个运行时才得知名称的class,获悉其完整构造(但不包括methods定义),并生成其对象实体、或对其fields设值、或唤起其methods。这种“看透class”的能力(the ability of the program to examine itself)被称为introspection(内省、内观、反省)。Reflection和introspection是常被并提的两个术语。

在JDK中,主要由以下类来实现Java反射机制,这些类都位于java.lang.reflect包中:

Class类:代表一个类(java.lang包中)。
Field 类:代表类的成员变量(成员变量也称为类的属性)。
Method类:代表类的方法。
Constructor 类:代表类的构造方法。
Array类:提供了动态创建数组,以及访问数组的元素的静态方法。

下面给出几个例子看看Reflection API的实际运用:

一、通过Class类获取成员变量、成员方法、接口、超类、构造方法等

在java.lang.Object 类中定义了getClass()方法,因此对于任意一个Java对象,都可以通过此方法获得对象的类型。Class类(java.lang包中)是Reflection API 中的核心类,它有以下方法:

getName():获得类的完整名字。
getFields():获得类的public类型的属性。
getDeclaredFields():获得类的所有属性。
getMethods():获得类的public类型的方法。
getDeclaredMethods():获得类的所有方法。
getMethod(String name, Class[] parameterTypes):获得类的特定方法,name参数指定方法的名字,parameterTypes 参数指定方法的参数类型。
getConstructors():获得类的public类型的构造方法。
getConstructor(Class[] parameterTypes):获得类的特定构造方法,parameterTypes 参数指定构造方法的参数类型。
newInstance():通过类的不带参数的构造方法创建这个类的一个对象。

public class RefConstructor {
    public static void main(String[] args)throws Exception
    {
        RefConstructor ref =new RefConstructor();
        ref.getConstructor();
    }
    public void getConstructor()throws Exception{
        Class c=null;
        c=Class.forName("java.lang.Long");
        Class cs[]={java.lang.String.class};

        Constructor c1=c.getConstructor(cs);
        System.out.println("1.通过参数获取指定class对象的构造方法");
        System.out.println(c1.toString());

        Constructor c2=c.getDeclaredConstructor(cs);
        System.out.println("2.。。。表示的类或接口的构造方法");
        System.out.println(c2.toString());

        Constructor c3=c.getEnclosingConstructor();
        System.out.println("3..本地或匿名类constructor对象,表示基础类的立即封闭构造方法");
        if(c3!=null) System.out.println(c3.toString());
        else System.out.println("wu");

        Constructor [] c4=c.getConstructors();
        System.out.println("4.获取指定class对象的所有构造方法");
        for(int i=0;i<c4.length;i++){
            System.out.println(c4[i].toString());
        }
java.lang.reflect.Type[] t1 =c.getGenericInterfaces();
        System.out.println("1.返回直接实现的接口");
        for(int i=0;i<t1.length;i++){
            System.out.println(t1[i].toString());
        }

        java.lang.reflect.Type t11=c.getGenericSuperclass();
        System.out.println("2.返回直接超类");
        System.out.println(t11.toString());

        Class[] cis=c.getClasses();
        System.out.println("3.返回超类和所有实现的接口");
        for(int i=0;i<cis.length;i++){
            System.out.println(cis[i].toString());
        }

        Class[] cs1= c.getInterfaces();
        System.out.println("4.返回实现的接口");
        for(int i=0;i<cs1.length;i++){
            System.out.println(cs1[i].toString());
        }
        Field f1[]= c.getFields();
        System.out.println("1.类或接口的所有可访问公共字段");
        for(int i=0;i<f1.length;i++)
        {
            System.out.println(f1[i].toString());
        }

        Field f2=c.getField("MIN_VALUE");
        System.out.println("2.类或接口的指定已声明指定公共成员字段");
        System.out.println(f2.toString());

        Field fs2[]=c.getDeclaredFields();
        System.out.println("3.类或接口所声明的所有字段");
        for(int i=0;i<fs2.length;i++){
            System.out.println(fs2[i].toString());
        }*/
        Field f4= c.getDeclaredField("serialVersionUID");
        System.out.println("4.类或接口的指定已声明指定字段");
        System.out.println(f4.toString());

        Method m1[] =c.getMethods();
        System.out.println("1.返回类所有的公共成员方法");
        for(int i=0;i<m1.length;i++){
            System.out.println(m1[i].toString());
        }

        Method m2=c.getMethod("longValue", new Class[]{});
        System.out.println("2.返回指定公共成员方法");
        System.out.println(m2.toString());
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值