通常、リフレクションには最初の方法を使用します。まず、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'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'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()); }
我们反射通常使用第一种方式,首先来看看Class.forName(clssName):
注意:传入的className必须是类的全路径,否则会报错java.lang.ClassNotFoundException
。
// Returns the invoker'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'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通常、リフレクションには
最初の方法
注: 受信する className はクラスの
フル パスである必要があります。
java.lang.ClassNotFoundException
が報告されます。 🎜rrreee🎜 forName0 メソッドを呼び出して、ClassLoader.getCallerClassLoader()
を使用して🎜ClassLoader をロードします🎜🎜rrreee🎜 claser.getClassLoader0() を呼び出して ClassLoader を取得します。これはセキュリティを回避できるプライベート パッケージです。小切手。 🎜rrreee🎜1. ClassLoader とは何ですか? 🎜🎜 上記は Java の高度なリフレクションの内容です。詳しくは、PHP 中国語 Web サイト (www.php.cn) をご覧ください。 🎜🎜🎜🎜🎜