码迷,mamicode.com
首页 > 编程语言 > 详细

加载Java类

时间:2018-03-03 19:28:13      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:加载   exception   初始化   执行   otf   public   context   throw   not   

  /**
     * 获取类加载器
     *
     * @return
     */
    public static ClassLoader getClassLoader() {
        // 只需要获取当前线程中的ClassLoader即可
        return Thread.currentThread().getContextClassLoader();
    }

    /**
     * 加载类
     * 加载类需要提供“类名”和“是否初始化”两个参数,这里提到的是否初始化指的是:是否执行类的静态代码块
     * @param className
     * @param isInitialized
     * @return
     */
    public static Class<?> loadClass(String className, boolean isInitialized) {
        Class<?> cls;
        try {
            cls = Class.forName(className, isInitialized, getClassLoader());
        } catch (ClassNotFoundException e) {throw new RuntimeException(e);
        }
        return cls;
    }

 

加载Java类

标签:加载   exception   初始化   执行   otf   public   context   throw   not   

原文地址:https://www.cnblogs.com/lay2017/p/8502614.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!