1. 程式人生 > >java中Class物件詳解和類名.class, class.forName(), getClass()區別

java中Class物件詳解和類名.class, class.forName(), getClass()區別

package yerasel;
import java.lang.reflect.Method;
public class Test {
    /**
     * @param args
     */
    public static void main(String[] args) {
        show("yerasel.Person");
    }
    private static void show(String name) {
        try {
            // JVM將使用類A的類裝載器,將類A裝入記憶體(前提是:類A還沒有裝入記憶體),不對類A做類的初始化工作
Class classtype3 = Person.class; // 獲得classtype中的方法 Method getMethod3 = classtype3.getMethod("getName", new Class[] {}); Class[] parameterTypes3 = { String.class, int.class }; Method setMethod3 = classtype3 .getMethod("setName", parameterTypes3);
// 例項化物件,因為這一句才會輸出“靜態初始化”以及“初始化” Object obj3 = classtype3.newInstance(); // 通過例項化後的物件呼叫方法 getMethod3.invoke(obj3); // 獲取預設值 setMethod3.invoke(obj3, "Setting new ", 3); // 設定 getMethod3.invoke(obj3); // 獲取最新 System.out.println("----------------");
// 返回執行時真正所指的物件 Person p = new Person(); Class classtype = p.getClass();// Class.forName(name); // 獲得classtype中的方法 Method getMethod = classtype.getMethod("getName", new Class[] {}); Class[] parameterTypes = { String.class, int.class }; Method setMethod = classtype.getMethod("setName", parameterTypes); getMethod.invoke(p);// 獲取預設值 setMethod.invoke(p, "Setting new ", 1); // 設定 getMethod.invoke(p);// 獲取最新 System.out.println("----------------"); // 裝入類,並做類的初始化 Class classtype2 = Class.forName(name); // 獲得classtype中的方法 Method getMethod2 = classtype2.getMethod("getName", new Class[] {}); Class[] parameterTypes2 = { String.class, int.class }; Method setMethod2 = classtype2 .getMethod("setName", parameterTypes2); // 例項化物件 Object obj2 = classtype2.newInstance(); // 通過例項化後的物件呼叫方法 getMethod2.invoke(obj2); // 獲取預設值 setMethod2.invoke(obj2, "Setting new ", 2); // 設定 getMethod2.invoke(obj2); // 獲取最新 System.out.println("----------------"); } catch (Exception e) { System.out.println(e); } } }