ホームページ  >  記事  >  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());
    }
java.lang.ClassNotFoundException

    // 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();
    }

通过调用forName0方法,使用ClassLoader.getCallerClassLoader()来加载ClassLoader

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

在获取ClassLoader调用claser.getClassLoader0() 这是一个私有包,可以避免安全检查。

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

1、ClassLoader到底是个什么东西

我们反射通常使用第一种方式,首先来看看Class.forName(clssName):
注意:传入的className必须是类的全路径,否则会报错java.lang.ClassNotFoundException

    // 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();
    }

通过调用forName0方法,使用ClassLoader.getCallerClassLoader() forName0 メソッドを呼び出して、ClassLoader.getCallerClassLoader() を使用してClassLoader をロードします

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

claser.getClassLoader0() を呼び出して ClassLoader を取得します。これはセキュリティを回避できるプライベート パッケージです。小切手。

rrreee

1. ClassLoader とは

通常、リフレクションには
最初の方法

を使用します。まず、Class.forName(clssName) を見てみましょう:

注: 受信する className はクラスの
フル パスである必要があります。

、それ以外の場合、エラー java.lang.ClassNotFoundException が報告されます。 🎜rrreee🎜 forName0 メソッドを呼び出して、ClassLoader.getCallerClassLoader() を使用して🎜ClassLoader をロードします🎜🎜rrreee🎜 claser.getClassLoader0() を呼び出して ClassLoader を取得します。これはセキュリティを回避できるプライベート パッケージです。小切手。 🎜rrreee🎜1. ClassLoader とは何ですか? 🎜🎜 上記は Java の高度なリフレクションの内容です。詳しくは、PHP 中国語 Web サイト (www.php.cn) をご覧ください。 🎜🎜🎜🎜🎜
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。