歡迎光臨
每天分享高質量文章

粗淺看 Java 反射機制

(點選上方公眾號,可快速關註)


來源:吳士龍 ,

blog.csdn.net/wsl211511/article/details/51605655

Java 反射是 Java 被視為動態(或準動態)語言的一個關鍵性質。這個機制允許程式在運 行時透過 Reflection APIs 取得任何一個已知名稱的class 的內部資訊,包括其 modifiers( 諸如 public, static 等 )、superclass (例如 Object)、 實現之 interfaces(例如 Cloneable),也包括 fields 和 methods 的所有資訊,並可於執行時改變 fields 內容或喚起 methods。

Java 反射機制容許程式在執行時載入、探知、使用編譯期間完全未知的 classes。 換言之,Java 可以載入一個執行時才得知名稱的 class,獲得其完整結構。

JDK 中提供的 Reflection API

Java 反射相關的 API 在包 java.lang.reflect 中,JDK 1.6.0的 reflect 包如下圖:

Member 介面 該介面可以獲取有關類成員(域或者方法)後者建構式的資訊。

AccessibleObject 類

該類是域(field)物件、方法(method)物件、建構式(constructor)物件 的基礎類。它提供了將反射的物件標記為在使用時取消預設 Java 語言訪問控 制檢查的能力。

Array 類     提供動態地生成和訪問 JAVA 陣列的方法。

Constructor 類    提供一個類的建構式的資訊以及訪問類的建構式的介面。

Field 類     提供一個類的域的資訊以及訪問類的域的介面。

Method 類    提供一個類的方法的資訊以及訪問類的方法的介面。

Modifier類    提供了 static 方法和常量,對類和成員訪問修飾符進行解碼。

Proxy 類     提供動態地生成代理類和類實體的靜態方法。

JAVA 反射機制提供了什麼功能 

Java 反射機制提供如下功能: 在執行時判斷任意一個物件所屬的類 在執行時構造任意一個類的物件

在執行時判段任意一個類所具有的成員變數和方法 在執行時呼叫任一個物件的方法

在執行時建立新類物件

在使用 Java 的反射功能時,基本首先都要獲取類的 Class 物件,再透過 Class 物件獲取 其他的物件。

這裡首先定義用於測試的類:

classType{

 

       publicintpubIntField;

       publicString pubStringField;

       privateintprvIntField;

 

        publicType(){

 

          Log(“Default Constructor”);

   }

          Type(intarg1, String arg2){

          pubIntField = arg1;

          pubStringField = arg2; 13

        Log(“Constructor with parameters”); 15  }

 

    publicvoidsetIntField(intval) {

     this.prvIntField = val; 19   }

         publicintgetIntField() {

    returnprvIntField;

     }

         privatevoidLog(String msg){

         System.out.println(“Type:”+ msg);

   }

 }

classExtendTypeextendsType{

     publicintpubIntExtendField;

     publicString pubStringExtendField;

     privateintprvIntExtendField;

 

    publicExtendType(){

 }

Log(“Default Constructor”);

}

ExtendType(intarg1, String arg2){ pubIntExtendField = arg1; pubStringExtendField = arg2;

Log(“Constructor with parameters”);

}

publicvoidsetIntExtendField(intfield7) { this.prvIntExtendField = field7;

}

publicintgetIntExtendField() { returnprvIntExtendField;

}

privatevoidLog(String msg){ System.out.println(“ExtendType:”+ msg);

}

1、獲取類的 Class 物件

Class 類的實體表示正在執行的 Java 應用程式中的類和介面。獲取類的 Class 物件有多種方式:

呼叫 Boolean var1 = true; getClass

運 用 .class語法

運用 static method Class.forName()

Class > classType2 = var1.getClass();

System.out.println(classType2);

輸出:class java.lang.Boolean

Class > classType4 = Boolean.class; System.out.println(classType4);

輸出:class java.lang.Boolean

Class > classType5 = Class.forName(“java.lang.Boolean”); System.out.println(classType5);

輸出:class java.lang.Boolean

運用 Class > classType3 = Boolean.TYPE

primitive wrapper classes  的TYPE 語法

這裡 返 回 的 是 原 生 類 型 ,和Boolean.class傳回的不同

System.out.println(classType3);

輸出:boolean

2、獲取類的 Fields

可以透過反射機製得到某個類的某個屬性,然後改變對應於這個類的某個實體的該屬性值。JAVA 的 Class類提供了幾個方法獲取類的屬性。

public Field getField(String name)

傳回一個 Field 物件,它反映此 Class 物件所表示的類或介面的指定公共成員欄位

public Field[] getFields()

傳回一個包含某些 Field 物件的陣列,這些物件反映此 Class 物件所表 示的類或介面的所有可訪問公共欄位

public Field getDeclared Field(String name)

傳回一個 Field 物件,該物件反映此 Class 物件所表示的類或介面的指定已宣告欄位

public Field[] getDeclared Fields()

傳回 Field 物件的一個陣列,這些物件反映此 Class 物件所表示的類或 介面所宣告的所有欄位

Class > classType = ExtendType.class; 

// 使用 getFields 獲取屬性

 

Field[] fields = classType.getFields(); 

for(Field f : fields) 

{

 

System.out.println(f); 

 

System.out.println(); 

 

// 使用 getDeclaredFields 獲取屬性

 

fields = classType.getDeclaredFie lds(); 

for(Field f : fields)

 

System.out.println(f); 

輸出:

public int com.quincy.ExtendType.pubIntExtendField

public java.lang.String com.quincy.ExtendType.pubStringExtendField public int com.quincy.Type.pubIntField

public java.lang.String com.quincy.Type.pubStringField

public int com.quincy.ExtendType.pubIntExtendField

public java.lang.String com.quincy.ExtendType.pubStringExtendField private int com.quincy.ExtendType.prvIntExtendField

可見 getFields和 getDeclaredFields區別:

public MethodgetMethod(String name, Class >… parameterTy pes)

public Method[] getMethods(

)

 

public MethodgetDeclared Method(Stringname,Class<?>… parameterTy pes)

public Method[] getDeclared Methods()

getFields傳回的是申明為 public的屬性,包括父類中定義,

getDeclaredFields傳回的是指定類定義的所有定義的屬性,不包括父類的。

3、獲取類的 Method

透過反射機製得到某個類的某個方法,然後呼叫對應於這個類的某個實體的該方法

Class類提供了幾個方法獲取類的方法。

public MethodgetMethod(String name, Class >… parameterTy pes)

public Method[] getMethods(

)

public MethodgetDeclared Method(Stringname,Class<

?>…

parameterTy pes)

public Method[] getDeclared Methods()

傳回一個 Method 物件,它反映此 Class 物件所表示的類或介面的指定公共成員方法;

傳回一個包含某些 Method 物件的陣列,這些物件反映此Class 物件所表 示的類或介面(包括那些由該類或介面宣告的以及從超類和超介面繼承的那 些的類或介面)的公共 member 方法;

傳回一個 Method 物件,該物件反映此Class 物件所表示的類或介面的指 定已宣告方法;

傳回 Method物件的一個陣列,這些物件反映此 Class 物件表示的類或接 口宣告的所有方法,包括公共、保護、預設(包)訪問和私有方法,但不包 括繼承的方法。

  // 使用 getMethods 獲取函式

   Class > classType = ExtendType.class;

 

   Method[] methods = classType.getMethods();

 

    for(Method m : methods)5 {

      System.out.println(m);

 

  }

 

  System.out.println();

 

 // 使用 getDeclaredMethods 獲取函式

 methods = classType.getDeclaredMethods();

 

  for(Method m : methods) {

     System.out.println(m);

 }

輸出:

public void com.quincy.ExtendType.setIntExtendField(int) public int com.quincy.ExtendType.getIntExtendField() public void com.quincy.Type.setIntField(int)

public int com.quincy.Type.getIntField()

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 final void   java.lang.Object.wait(long,int) throws java.lang.InterruptedException

public boolean java.lang.Object.equals(java.lang.Object) public java.lang.String java.lang.Object.toString() 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() private void com.quincy.ExtendType.Log(java.lang.String) public void com.quincy.ExtendType.setIntExtendField(int) public int com.quincy.ExtendType.getIntExtendField()

4、獲取類的 Constructor

透過反射機製得到某個類的建構式,然後呼叫該建構式建立該類的一個實體Class類提供了幾個方法獲取類的建構式。

public Constructor< T>

傳回一個 Constructor 物件,它反映此 Class物件所表示的類的指定 公共構造方法

getConstruct or(Class >... parameterTyp es) public Constructor >[] getConstruct ors()

傳回一個包含某些 Constructor 物件的陣列,這些物件反映此 Class

物件所表示的類的所有公共構造方法

public Constructor< T> getDeclaredC onstructor(Class >… parameterTyp es)

傳回一個 Constructor 物件,該物件反映此 Class物件所表示的類或 介面的指定構造方法

public Constructor >[] getDeclaredC onstructors( )

傳回 Constructor 物件的一個陣列,這些物件反映此 Class 物件表示 的類宣告的所有構造方法。它們是公共、保護、預設(包)訪問和私有構造方法

 // 使用 getConstructors 獲取建構式

   Constructor >[] constructors = classType.getConstructors();

 

    for(Constructor > m : constructors){

      System.out.println(m);

 

 }

 System.out.println();

 

 // 使用 getDeclaredConstructors 獲取建構式

 constructors = classType.getDeclaredConstructors();

  for(Constructor > m : constructors)  {

System.out.println(m);

}

 

輸出:

 publiccom.quincy.ExtendType()

 publiccom.quincy.ExtendType()

 com.quincy.ExtendType(int,java.lang.String)

5、新建類的實體

透過反射機制建立新類的實體,有幾種方法可以建立新類的實體,呼叫無自變數

①、呼叫類的 Class物件的 newInstance方法,該方法會呼叫物件的預設ctor建構式,如果沒有預設建構式,會呼叫失敗.

Class > classType = ExtendType.class; Object inst = classType.newInstance(); System.out.println(inst);

輸出:

Type:Default Constructor ExtendType:Default Constructor com.quincy.ExtendType@d80be3

②、呼叫預設 Constructor 物件的 newInstance 方法

Class > classType = ExtendType.class;

Constructor >  constructor1 = classType.getConstructor();

Object inst = constructor1.newInstance(); System.out.println(inst);

輸出:

Type:Default Constructor ExtendType:Default Constructor com.quincy.ExtendType@1006d75

③、呼叫帶引數 Constructor 物件的 newInstance 方法

Constructor > constructor2 =

classType.getDeclaredConstructor(int.class, String.class);

Object inst = constructor2.newInstance(1, “123”); System.out.println(inst);

輸出:

Type:Default Constructor ExtendType:Constructor with parameters com.quincy.ExtendType@15e83f9

6、呼叫類的函式

透過反射獲取類 Method 物件,呼叫 Field 的 Invoke 方法呼叫函式。

Class > classType = ExtendType.class;

Object inst = classType.newInstance(); 

Method    logMethod   = 

classType.getDeclaredMethod(“Log”, 

String.class); 

logMethod.invoke(inst,”test”); 

 

輸出:

 

Type:Default Constructor ExtendType:Default Constructor 

Class com.quincy.ClassT can not accessa member 

ofclasscom.quincy.ExtendType with modifiers”private”

 

上面失敗是由於沒有許可權呼叫 private 函式,這裡需要設定Accessible 為 true;

 

Class > classType = ExtendType.class; 

Object inst = classType.newInstance();

 

Method logMethod = classType.getDeclaredMethod(“Log”, String.class);

logMethod.setAccessible(true);

logMethod.invoke(inst,”test”);

7、設定/獲取類的屬性值

透過反射獲取類的 Field 物件,呼叫 Field 方法設定或獲取值

Class > classType = ExtendType.class; 

Object inst = classType.newInstance(); 

Field intField = classType.getField(“pubIntExtendField”); 

intField.setInt(inst,100); 

intvalue = intField.getInt(inst); 

 

動態建立代理類 

代理樣式:代理樣式的作用=為其他物件提供一種代理以控制對這個物件的訪問。 代理樣式的角色:

抽象角色:宣告真實物件和代理物件的共同介面 代理角色:代理角色內部包含有真實物件的取用,從而可以操作真實物件。真實角色:代理角色所代表的真實物件,是我們最終要取用的物件。 動態代理:

java.lang.re flect.Proxy

Proxy提供用於建立動態代理類和實體的靜態方法,它還是由這些方法建立 的所有動態代理類的超InvocationHandler是代理實體的呼叫處理程式 實現的介面,每個代理實體都具有一個關聯的呼叫處理程式。對代理實體呼叫方法時,將對方法呼叫進行編碼並將其指派到 它的呼叫處理程式的 invoke 方法。

動態 Proxy 是這樣的一種類:

它是在執行生成的類,在生成時你必須提供一組 Interface給它,然後該 class 就宣稱 它實現了這些interface。你可以把該 class 的實體當作這些 interface 中的任何一個 來用。當然,這個 DynamicProxy其實就是一個 Proxy,它不會替你作實質性的工作,在生成它的實體時你必須提供一個 handler,由它接管實際的工作。

在使用動態代理類時,我們必須實現 InvocationHandler介面

步驟:

//1、定義抽象角色

public interface Subject { public void Request();

}

//2、定義真實角色

public class RealSubject implements Subject {

@Override

public void Request() {

// TODO Auto-generated method stub System.out.println(“RealSubject”);

}

}

//3、定義代理角色

public class DynamicSubject implements InvocationHandler { private Objectsub;

public DynamicSubject(Object obj){

this.sub = obj;

}

@Override

public Object invoke(Object proxy, Method method, Object[] args) throws Throwable{

// TODO Auto-generated method stub System.out.println(“Method:”+ method + “,Args:” + args); method.invoke(sub, args);

return null;

}

}

//4、透過 Proxy.newProxyInstance 構建代理物件

RealSubject realSub = new RealSubject(); InvocationHandler handler = new DynamicSubject(realSub); Class > classType = handler.getClass();

Subject    sub  = (Subject)Proxy.newProxyInstance(classType.getClassLoader(), realSub.getClass().getInterfaces(), handler); System.out.println(sub.getClass());

//5、透過呼叫代理物件的方法去呼叫真實角色的方法。

sub.Request();

輸出:

class $Proxy0 新建的代理物件,它實現指定的介面

Method:public   abstract   void DynamicProxy.Subject.Request(),Args:null

RealSubject 呼叫的真實物件的方法

本篇文章依舊採用小demo來說明,因為我始終覺的,案例驅動是最好的,要不然只看理論的話,看了也不懂,不過建議大家在看完文章之後,在回過頭去看看理論,會有更好的理解。

下麵開始正文。

【案例1】透過一個物件獲得完整的包名和類名

packageReflect; 

 

/** 

* 透過一個物件獲得完整的包名和類名

 

* */

classDemo{ 

//other codes… 

}

 

classhello{ 

publicstaticvoidmain(String[] args) { 

Demo demo=newDemo();

 

System.out.println(demo.getClass().getName()); 

}

【執行結果】:Reflect.Demo

新增一句:所有類的物件其實都是Class的實體。

【案例2】實體化Class類物件

packageReflect; 

classDemo{ 

//other codes… 

 

classhello{ 

publicstaticvoidmain(String[] args) { 

Class > demo1=null; 

Class > demo2=null;

 

Class > demo3=null;

try{ 

//一般儘量採用這種形式

demo1=Class.forName(“Reflect.Demo”); 

}catch(Exception e){ 

e.printStackTrace(); 

}

demo2=newDemo().getClass(); 

demo3=Demo.class; 

 

System.out.println(“類名稱   “+demo1.getName());

System.out.println(“類名稱   “+demo2.getName());

System.out.println(“類名稱   “+demo3.getName());

【執行結果】:

類名稱   Reflect.Demo

類名稱   Reflect.Demo

類名稱   Reflect.Demo

【案例3】透過Class實體化其他類的物件 透過無參構造實體化物件

package Reflect;

class Person{

 public String getName(){

 return name;

  }

 public void setName(String name) {

 

this.name = name;   }

public int getAge() {

return age;

 }

 

public void setAge(intage) {

this.age = age;    }

@Override

     public String toString(){

          return”[“+this.name+”  “+this.age+”]”;

    }

 private String name;

 private int age;

 }

class hello{

public static void main(String[] args) {

}

Class > demo=null; try{

demo=Class.forName(“Reflect.Person”);

}catch(Exception e) { e.printStackTrace();

}

 

Person per=null; try{

per=(Person)demo.newInstance();

 

}catch(InstantiationException e) {

 

// TODO Auto-generated catch block e.printStackTrace();

}catch(IllegalAccessException e) {

 

// TODO Auto-generated catch block e.printStackTrace();

}

per.setName(“Rollen”); per.setAge(20); System.out.println(per);

}

【執行結果】:

[Rollen20]

但是註意一下,當我們把 Person中的預設的無參建構式取消的時候,比如自己定義只定義一個有引數 的建構式之後,會出現錯誤:

比如我定義了一個建構式:

public Person(String name,intage) {

     this.age=age;

     this.name=name;

}

然後繼續執行上面的程式,會出現:

java.lang.InstantiationException:Reflect.Person

atjava.lang.Class.newInstance0(Class.java:340)

atjava.lang.Class.newInstance(Class.java:308)

atReflect.hello.main(hello.java:39)

Exceptioninthread”main”java.lang.NullPointerException

atReflect.hello.main(hello.java:47)

所以大家以後再編寫使用 Class 實體化其他類的物件的時候,一定要自己定義無參的建構式

【案例】透過 Class 呼叫其他類中的建構式 (也可以透過這種方式透過 Class 建立其他類的物件)

package Reflect;

import java.lang.reflect.Constructor;

class Person{

public Person() {

 }

 publicPerson(String name){

 this.name=name;

}

 

 public Person(intage){

 this.age=age;

}

 

public Person(String name,intage) {

 }

this.age=age; 

this.name=name;

}

publicString getName() { returnname;

}

 

publicintgetAge() { returnage;

}

 

@Override

publicString toString(){ return”[“+this.name+” “+this.age+”]”;

}

private String name; 

private int age;

 

class hello{

 public static void main(String[] args) {

Class > demo=null;

   try{

 

demo=Class.forName(“Reflect.Person”);

 }catch(Exception e) {

 e.printStackTrace();

 }

 Person per1=null;

 Person per2=null;

 Person per3=null;

 Person per4=null;

//取得全部的建構式

 Constructor >  cons[]=demo.getConstructors();

 try{

per1=(Person)cons[0].newInstance(); per2=(Person)cons[1].newInstance(“Rollen”); per3=(Person)cons[2].newInstance(20); per4=(Person)cons[3].newInstance(“Rollen”,20);

}catch(Exception e){ e.printStackTrace();

}

System.out.println(per1); System.out.println(per2); System.out.println(per3); System.out.println(per4);

}

【執行結果】:

[null0]

[Rollen0]

[null20]

[Rollen20]

【案例】 傳回一個類實現的介面:

package Reflect;

 interfaceChina{

 

 publicstaticfinalString  name=”Rollen”;

 

       publicstatic  int age=20;

       publicvoidsayChina();

       publicvoidsayHello(String  name,intage);

   }

class Person implements China{

      public Person() {

   }

     publicPerson(String sex){

           this.sex=sex;

    }

 

      publicString getSex(){

            returnsex;

    }

 

      publicvoidsetSex(String sex) {

 

      this.sex = sex; 22    }

      @Override

      publicvoidsayChina(){

           System.out.println(“hello  ,china”);

     }

 

     @Override

      publicvoidsayHello(String  name,intage){

            System.out.println(name+”  “+age);

    }

   privateString sex;

  }

 class hello{

       publicstaticvoidmain(String[] args) {

             Class > demo=null;

             try{

                 demo=Class.forName(“Reflect.Person”);

            }catch(Exception e) {

                 e.printStackTrace();

 }

}

//儲存所有的介面

Class >  intes[]=demo.getInterfaces(); for(inti =0; i < intes.length; i++) {

System.out.println(“實現的介面   “+intes[i].getName());

 

}

}

【執行結果】:

實現的介面   Reflect.China

(註意,以下幾個例子,都會用到這個例子的 Person類,所以為節省篇幅,此處不再貼上 Person的代 碼部分,只貼上主類 hello的程式碼)

【案例】:取得其他類中的父類

class hello{ 

public static void main(String[] args) { 

Class > demo=null; 

try{ 

demo=Class.forName(“Reflect.Person”); 

}catch(Exception e) {

 

e.printStackTrace(); 

//取得父類

Class >  temp=demo.getSuperclass(); 

System.out.println(“繼承的父類為:   “+temp.getName());

【執行結果】

繼承的父類為:   java.lang.Object

【案例】:獲得其他類中的全部建構式 這個例子需要在程式開頭新增importjava.lang.reflect.*;然後將主類編寫為:

class hello{ 

public static void main(String[] args) { 

Class > demo=null;

try{ 

demo=Class.forName(“Reflect.Person”); 

}catch(Exception e) {

e.printStackTrace(); 

Constructor >cons[]=demo.getConstructors(); 

for(inti =0; i < cons.length; i++) {

System.out.println(“構造方法:  “+cons[i]);

}

【執行結果】:

構造方法:public Reflect.Person()

構造方法:publicReflect.Person(java.lang.String)

但是細心的讀者會發現,上面的建構式沒有 public或者 private這一類的修飾符下麵這個例子我們就來獲取修飾符

class hello{

//構造方法

 }

publicstaticvoidmain(String[] args) { Class > demo=null;

try{

demo=Class.forName(“Reflect.Person”);

}catch(Exception e) { e.printStackTrace();

}

Constructor >cons[]=demo.getConstructors(); for(inti =0; i < cons.length; i++) {

Class >  p[]=cons[i].getParameterTypes(); System.out.print(“構造方法:                       “); intmo=cons[i].getModifiers();

System.out.print(Modifier.toString(mo)+”  “); System.out.print(cons[i].getName()); System.out.print(“(“); for(intj=0;j

System.out.print(p[j].getName()+”  arg”+i); if(j

System.out.print(“,”);

}

}

System.out.println(“){}”);

}

}

【執行結果】:

構造方法: publicReflect.Person(){}

構造方法: publicReflect.Person(java.lang.Stringarg1){}

有時候一個方法可能還有異常。下麵看看:

class hello{

  publicstaticvoidmain(String[] args) {

            Class > demo=null;

            try{

                   demo=Class.forName(“Reflect.Person”);

              }catch(Exception e) {

                    e.printStackTrace();

         }

              Method  method[]=demo.getMethods();

             for(inti=0;i

                  Class >  returnType=method[i].getReturnType();

                  Class >  para[]=method[i].getParameterTypes();

                  inttemp=method[i].getModifiers();

                 System.out.print(Modifier.toString(temp)+”  “);

                System.out.print(returnType.getName()+”  “);

                 System.out.print(method[i].getName()+” “);

                 System.out.print(“(“);

                  for(intj=0;j

                       System.out.print(para[j].getName()+”  “+”arg”+j);

                     if(j

                            System.out.print(“,”);

              }

            }

                 Class >  exce[]=method[i].getExceptionTypes();

               if(exce.length>0){

                      System.out.print(“) throws “);

                      for(intk=0;k

                           System.out.print(exce[k].getName()+” “);

                          if(k

                                 System.out.print(“,”);

                }

              }

 }

 

}else{

System.out.print(“)”) 

}

 

System.out.println();

}

}

【執行結果】:

public java.lang.StringgetSex()

public void setSex(java.lang.Stringarg0)publicvoidsayChina ()

public void sayHello (java.lang.String arg0,int arg1)

public final native void wait (long arg0) throwsjava.lang.InterruptedException

public final void wait()throwsjava.lang.InterruptedException

public final void wait(longarg0,intarg1)throwsjava.lang.InterruptedException

public boolean equals(java.lang.Objectarg0)publicjava.lang.StringtoString()

public native int hashCode()

public final native java.lang.ClassgetClass () public final native void notify ()

public final native void notifyAll()

【案例】接下來讓我們取得其他類的全部屬性吧,最後我講這些整理在一起,也就是透過class取得一個 類的全部框架

class hello {

       public static void main(String[] args) {

         Class > demo =null;

         try{              

 demo = Class.forName(“Reflect.Person”);

          }catch(Exception e) {

            e.printStackTrace();

        }

       System.out.println(“===============     本      類      屬      性

 ========================”);

    // 取得本類的全部屬性

        Field[] field = demo.getDeclaredFields();

           for(int i =0; i < field.length; i++) { 14     // 許可權修飾符

                int mo = field[i].getModifiers();

                String priv = Modifier.toString(mo);

          // 屬性型別

              Class > type = field[i].getType();

                System.out.println(priv +” “+type.getName() +” “

               + field[i].getName() +”;”); 21   }

       System.out.println(“=============== 實 現 的 接 口 或 者 父 類 的 屬 性

  ========================”);

      // 取得實現的介面或者父類的屬性

 

           Field[] filed1 = demo.getFields();

            for(intj =0; j < filed1.length; j++) { 27    // 許可權修飾符

               int mo = filed1[j].getModifiers();

                  String priv = Modifier.toString(mo);

          // 屬性型別

                Class > type = filed1[j].getType();

                 System.out.println(priv +” “+type.getName() +” “+ filed1[j].getName() +”;”) 

}

【執行結果】:

===============本類屬性========================

private java.lang.String sex;

===============實現的介面或者父類的屬性========================

public static final java.lang.String name; public static final int age;

【案例】其實還可以透過反射呼叫其他類中的方法:

class hello {

  public static void main(String[] args) {

              Class > demo =null;

              try{

                   demo = Class.forName(“Reflect.Person”);

            }catch(Exception e) {

                 e.printStackTrace();

        }

              try{

                 //呼叫 Person 類中的 sayChina 方法

                  Method  method=demo.getMethod(“sayChina”);

                  method.invoke(demo.newInstance());

                //呼叫 Person 的 sayHello 方法

                method=demo.getMethod(“sayHello”, String.class,int.class);

 }

}catch(Exception e) { e.printStackTrace();

}

}

【執行結果】:

hello,chinaRollen20

動態代理

【案例】首先來看看如何獲得類載入器:

class test{

 }

 class hello{

public static void main(String[] args) {

test t=newtest();

System.out.println(“類載入器”+t.getClass().getClassLoader().getClass().getName());

}

}

【程式輸出】:

類載入器 sun.misc.Launcher$AppClassLoader

其實在java中有三種類類載入器。

1)BootstrapClassLoader此載入器採用c++編寫,一般開發中很少見。

2)ExtensionClassLoader用來進行擴充套件類的載入,一般對應的是jre\lib\ext目錄中的類3)AppClassLoader 載入 classpath 指定的類,是最常用的載入器。同時也是java 中預設的載入器。 如果想要完成動態代理,首先需要定義一個 InvocationHandler介面的子類,已完成代理的具體操作。

package Reflect;

 import java.lang.reflect.*;

 //定義專案介面

  interface Subject {

 public String say(String name,intage); 7   }

 // 定義真實專案

 class RealSubject implements Subject {

}

@Override

 

public String say(String name,intage) { returnname +”               “+ age;

}

 class MyInvocationHandler implements InvocationHandler {

private Object obj =null;

public Object bind(Object obj) { this.obj = obj;

return Proxy.newProxyInstance(obj.getClass().getClassLoader(),

  }

.getClass().getInterfaces(),this);

}

@Override

 

public Object invoke(Object proxy, Method method,Object[] args) throwsThrowable{

Object temp = method.invoke(this.obj, args);

return temp;

}

 class hello {

      public static void main(String[] args) {

           MyInvocationHandler demo =newMyInvocationHandler();

         Subject sub = (Subject)demo.bind(newRealSubject());

         String info = sub.say(“Rollen”,20);

        System.out.println(info);

    }

}

【執行結果】: Rollen20

類的生命週期

在一個類編譯完成之後,下一步就需要開始使用類,如果要使用一個類,肯定離不開    JVM。在程式執行中JVM  透過裝載,連結,初始化這3個步驟完成。

類的裝載是透過類載入器完成的,載入器將.class檔案的二進位制檔案裝入JVM的方法區,並且在堆區創 建描述這個類的  java.lang.Class  物件。用來封裝資料。但是同一個類只會被類裝載器裝載以前

連結就是把二進位制資料組裝為可以執行的狀態。

連結分為校驗,準備,解析這3個階段校驗一般用來確認此二進位制檔案是否適合當前的   JVM(版本),準備就是為靜態成員分配記憶體空間,。並設定預設值

解析指的是轉換常量池中的程式碼作為直接取用的過程,直到所有的符號取用都可以被執行程式使用(建立完整的對應關係)

完成之後,型別也就完成了初始化,初始化之後類的物件就可以正常使用了,直到一個物件不再使用之後,將被垃圾回收。釋放空間。

當沒有任何取用指向Class物件時就會被解除安裝,結束類的生命週期

將反射用於工廠樣式 先來看看,如果不用反射的時候,的工廠樣式吧:

http://www.cnblogs.com/rollenholt/archive/2011/08/18/2144851.html

反射的用途

Reflection is commonly used by programs which require the ability to examine or modify the runtime behavior of applications running in the Java virtual machine.This is a relatively advanced feature and should be used only bydevelopers who have a strong graspof the fundamentals of the language.With that caveat in mind, reflection isa powerful technique and can enableapplications toperform operations which would otherwise be impossible.

反射被廣泛地用於那些需要在執行時檢測或修改程式行為的程式中。這是一個相對高階

的特性,只有那些語言基礎非常扎實的開發者才應該使用它。如果能把這句警示時刻放在心裡,那麼反射機制就會成為一項強大的技術,可以讓應用程式做一些幾乎不可能做到的事情。

反射的缺點

Reflection is powerful, but should not be used indiscriminately. If it is possible to performan operation without using reflection, then it ispreferable to avoid using it. The following concerns should be kept in mind when accessing code via reflection.

儘管反射非常強大,但也不能濫用。如果一個功能可以不用反射完成,那麼最好就不用。

在我們使用反射技術時,下麵幾條內容應該牢記於心:

效能第一 

Because reflection involves types that are dynamically resolved, certain Java virtual machine optimizations can not be performed.Consequently, reflective operations have slower performance than their non-reflective counterparts, and should be avoided in sections of code which are called frequently inperformance-sensitive applications.

反射包括了一些動態型別,所以 JVM 無法對這些程式碼進行最佳化。因此,反射操作的效

率要比那些非反射操作低得多。我們應該避免在經常被 執行的程式碼或對效能要求很高的程 序中使用反射。

安全限制 

Reflection requires a runtime permission which may not be presentwhen running under a security manager. This is in an important consideration for code which has to run in a restrictedsecurity context, such as in an Applet.

使用反射技術要求程式必須在一個沒有安全限制的環境中執行。如果一個程式必須在有

安全限制的環境中執行,如 Applet,那麼這就是個問題了。

內部暴露 

Since reflection allows code to perform operations that would be illegal in non-reflective code, such  as accessingprivatefields  and  methods, the  use of reflection  can  result in

unexpected side-effects, which may render code dysfunctional and may destroy portability. Reflective code breaks abstractions and thereforemay change behavior with upgradesof the platform.

由於反射允許程式碼執行一些在正常情況下不被允許的操作(比如訪問私有的屬性和方

法),所以使用反射可能會導致意料之外的副作用--程式碼有功能上的錯誤,降低可移植性。反射程式碼破壞了抽象性,因此當平臺發生改變的時候,程式碼的行為就有可能也隨著變化。

業務思想

JAVA中反射機制很實用。在不斷地專案實戰中,大家或許才體會到反射的真正強大之處,從很多小的demo中,個人在學習階段時,幾乎沒啥感覺,就是個面熟。參考很多資料,個人的總結不到之處,歡迎交流指正。

看完本文有收穫?請轉發分享給更多人

關註「ImportNew」,提升Java技能

贊(0)

分享創造快樂