您好,登錄后才能下訂單哦!
先看下JDK中的說明:
java.lang.Object java.lang.Class<T> Instances of the class Class represent classes and interfaces in a running Java application. An enum is a kind of class and an annotation is a kind of interface. Every array also belongs to a class that is reflected as a Class object that is shared by all arrays with the same element type and number of dimensions. The primitive Java types (boolean, byte, char, short, int, long, float, and double), and the keyword void are also represented as Class objects. Class has no public constructor. Instead Class objects are constructed automatically by the Java Virtual Machine as classes are loaded and by calls to the defineClass method in the class loader. The following example uses a Class object to print the class name of an object: void printClassName(Object obj) { System.out.println("The class of " + obj + " is " + obj.getClass().getName()); } It is also possible to get the Class object for a named type (or for void) using a class literal. System.out.println("The name of class Foo is: "+Foo.class.getName()); 在一個運行著的JAVA應用中,類的任何實例都可以用Class對象來指代,Class可以指代所有的類和接口。枚舉屬于類,注解屬于接口,均可以用Class指代。每個數組均屬于反射的Class對象,數組中的每個元素和維度也同樣擁有Class對象。Java基本類型(boolean, byte, char, short, int, long, float, and double)以及關鍵字void也都可以用Class指代。 Class類不存在構造函數,當類被加載過程中由JVM通過調用類加載器中的defineClass方法自動構造。 下面的例子是將一個對象通過Class對象打印出類名。 void printClassName(Object obj) { System.out.println("The class of " + obj + " is " + obj.getClass().getName()); } 通過class關鍵字指定類型也是可以得到Class對象的 System.out.println("The name of class Foo is: "+Foo.class.getName());
上面內容總結下,就是Java中所有的對象以及基本類型都是可以用Class指代的。接下來看一個Demo。
/** * * 旨在測試Class對象和Instance之間的關系; * 旨在測試靜態變量的聲明和賦值過程; * @author zzy * */ public class ObjClass { private enum tmpEnum {A, B, C}; public static void main(String[] args){ int[] tmpArray = {1,2,3}; Class classType; try { // 通過類名直接獲取Class對象,JVM中沒有加載。 classType = InClass.class; System.out.println(".class: " + classType); System.out.println(".class finish."); // Java加載類 classType = Class.forName("InClass"); System.out.println("Class.forName: " + classType); System.out.println("Class.forName: finish."); // 創建實例 InClass newClassType = new InClass(); classType = newClassType.getClass(); System.out.println("new Object.getClass: " + classType); System.out.println("new Object.getClass: finish."); // 數組對象 classType = tmpArray.getClass(); System.out.println("Array.getClass:" + classType.getSimpleName()); System.out.println("Array.getClass: finish."); // 枚舉對象 classType = tmpEnum.class; System.out.println("enum.class:" + classType); System.out.println("enum.class: finish."); } catch (ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } class InClass{ // 對靜態變量聲明之前賦值 { staticPara = 10; } public static int staticPara; // 構造函數 public InClass(){ System.out.println("construction..."); } // 靜態代碼塊 static { System.out.println("static function..."); } // 靜態變量賦值 { staticPara = 20; } { System.out.println("normal function, staticPara:" + staticPara); } // 靜態變量賦值 { staticPara = 30; } }
輸出結果:
.class: class InClass .class finish. static function... Class.forName: class InClass Class.forName: finish. normal function, staticPara:20 construction... new Object.getClass: class InClass new Object.getClass: finish. Array.getClass:int[] Array.getClass: finish. enum.class:class ObjClass$tmpEnum enum.class: finish.
說明:
1. .class方式獲取類文件的Class對象,并不需要加載JVM中。
2. Class.forName的方式JVM會加載類,同時會編譯。 如此,類中的靜態代碼塊就會被執行。
3. 創建實例過程中(已經加載至JVM中,也就是說編譯過了),調用構造函數,并執行非靜態代碼塊。
4. 靜態代碼對于變量的聲明和賦值順序是沒有影響的(編譯過程處理),所以結果是20。
5. 數據對象和枚舉對象也是可以被Class對象指定的。
以上這篇基于Java class對象說明、Java 靜態變量聲明和賦值說明(詳解)就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。