码迷,mamicode.com
首页 > 其他好文 > 详细

48.反射

时间:2020-06-29 00:28:30      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:stat   ext   system   类加载   div   委派   inf   span   委托   

1.类加载器

1.1类加载

技术图片

 

 技术图片

 

 1.2类加载器

技术图片

 

 技术图片

    public static void main(String[] args) {
//        static ClassLoader getSystemClassLoader() 返回用于委派的系统类加载器。
//        ClassLoader getParent() 返回委托的父类加载器。(返回父类加载器进行委派)
        ClassLoader c1 = ClassLoader.getSystemClassLoader();//返回用于委派的系统类加载器。
        System.out.println(c1);//AppClassLoader
        ClassLoader c2 = c1.getParent();
        System.out.println(c2);//ExtClassLoader
        ClassLoader c3 = c2.getParent();
        System.out.println(c3);//null
    }
}

2.反射

2.1反射概述

技术图片

 

 技术图片

 

 2.2获取Class类的对象

 

48.反射

标签:stat   ext   system   类加载   div   委派   inf   span   委托   

原文地址:https://www.cnblogs.com/luzhanshi/p/13205671.html

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