Rumah  >  Artikel  >  Java  >  java之反射进阶

java之反射进阶

黄舟
黄舟asal
2017-02-24 09:47:471347semak imbas


我们反射通常使用第一种方式,首先来看看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)!


Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel sebelumnya:hadoop安装和维护01--JDK环境部署Artikel seterusnya:java之反射基础