首頁  >  文章  >  Java  >  java之反射進階

java之反射進階

黄舟
黄舟原創
2017-02-24 09:47:471347瀏覽


我們反射通常使用第一種方式,先來看看Class.forName(clssName):
注意:傳入的className必須是類別的全路徑,否則會報錯java.lang.ClassNotFoundException

public static Class<?> forName(String className)                
throws ClassNotFoundException {        
return forName0(className, true, ClassLoader.getCallerClassLoader());
    }

透過呼叫forName0方法,使用ClassLoader.getCallerClassLoader()來載入ClassLoader

    // Returns the invoker&#39;s class loader, or null if none.
    // NOTE: This must always be invoked when there is exactly one intervening
    // frame from the core libraries on the stack between this method&#39;s
    // invocation and the desired invoker.
    static ClassLoader getCallerClassLoader() {
        // NOTE use of more generic Reflection.getCallerClass()
        Class caller = Reflection.getCallerClass(3);
        // This can be null if the VM is requesting it        
        if (caller == null) {            
        return null;
        }
        // Circumvent security check since this is package-private        
        return caller.getClassLoader0();
    }

在取得ClassLoader呼叫claser.getClassLoader0() 這是一個私有包,可以避免安全檢查。

 // Package-private to allow ClassLoader access
    native ClassLoader getClassLoader0();

1、ClassLoader到底是個什麼東西

我們反射通常使用第一種方式,首先來看看Class.forName(clssName):
注意:傳入的className必須是類別的全路徑,否則會報錯java.lang.ClassNotFoundException

public static Class<?> forName(String className)                
throws ClassNotFoundException {        
return forName0(className, true, ClassLoader.getCallerClassLoader());
    }

透過呼叫forName0方法,使用ClassLoader.getCallerClassLoader()來載入ClassLoader

    // Returns the invoker&#39;s class loader, or null if none.
    // NOTE: This must always be invoked when there is exactly one intervening
    // frame from the core libraries on the stack between this method&#39;s
    // invocation and the desired invoker.
    static ClassLoader getCallerClassLoader() {
        // NOTE use of more generic Reflection.getCallerClass()
        Class caller = Reflection.getCallerClass(3);
        // This can be null if the VM is requesting it        
        if (caller == null) {            
        return null;
        }
        // Circumvent security check since this is package-private        
        return caller.getClassLoader0();
    }

在取得ClassLoader呼叫claser.getClassLoader0() 這是一個私有包,可以避免安全檢查。

 // Package-private to allow ClassLoader access
    native ClassLoader getClassLoader0();

1、ClassLoader到底是什麼東西

 以上就是java反射進階的內容,更多相關內容請關注PHP中文網(www.php.cn)!


#
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn