类加载&反射

#### ClassLoader

- 分类:

1.ApplicationClassLoader  系统加载器

2.ExtensionClassLoader  扩展类加载器

3.BootStrapClassLoader 引导类加载器

- 在JVM中表示两个class对象是否为同一个类对象存在两个必要条件:1.类的完整类名必须一致,包括包名。2.加载这个类的ClassLoader(指ClassLoader实例对象)必须相同。**不同的类加载器加载的同名对象不是同一个Class对象**,但是由于缓存的机制,一般不允许重新加载,除非加载器实现了findClass方法或loadClass方法。

也就是说,在JVM中,即使这个两个类对象(class对象)来源同一个Class文件,被同一个虚拟机所加载,但只要加载它们的ClassLoader实例对象不同,那么这两个类对象也是不相等的,这是因为**不同的ClassLoader实例对象都拥有不同的独立的类名称空间**,‘所以加载的class对象也会存在不同的类名空间中,但前提是覆写loadclass方法。

- 使用:热部署功能时(一个class文件通过不同的类加载器产生不同class对象从而实现热部署功能)

- 代码如何实现双亲委派:

从前面双亲委派模式对loadClass()方法的源码分析中可以知,在方法第一步会通过Class<?> c = findLoadedClass(name);

从缓存查找,类名完整名称相同则不会再次被加载,因此我们必须绕过缓存查询才能重新加载class对象。当然也可直接调用findClass()方法,这样也避免从缓存查找

为类变量(即static修饰的字段变量)分配内存并且设置该类变量的初始值即0(如static int i=5;这里只将i初始化为0,至于5的值将在初始化时赋值),

这里不包含用final修饰的static,因为final在编译的时候就会分配了,

注意这里不会为实例变量分配初始化,类变量会分配在方法区中,而实例变量是会随着对象一起分配到Java堆中。

双亲委派模型的破坏者-线程上下文类加载器。

实际上核心包的SPI类对外部实现类的加载都是基于线程上下文类加载器执行的,通过这种方式实现了Java核心代码内部去调用外部实现类。






public class ClassTest {

public static void main(String[] args) {

/**

* 一个类/j接口/枚举/数组/注解/基础类型/void只有一个类类型(JVM中的.class文件),描述类的类,

* 被加载后,这个类的所有信息都在这个类中

*

*/

        //类加载器

        try {

//获取类的Class-3法

            Class c1 = Class.forName("ReflectionTest.ClassTest");

            Class c2 = ReflectionTest.ClassTest.class;

            Class c3 =new ReflectionTest.ClassTest().getClass();

            System.out.println(c1.hashCode());

            System.out.println(c2.hashCode());

            System.out.println(c3.hashCode());

            Class c4 = Integer.TYPE;

            Class c5 = Comparable.class;

            Class c6 = String[][].class;//所有二维String数组都是一个类类

            Class c7 =Override.class;

            Class c8 = ElementType.class;

            Class c9 = Integer.class;

            Class c11 = Integer.class;

            Class c10 =void.class;//类的类

            Class c12 = String[][].class;

        }catch (ClassNotFoundException e) {

e.printStackTrace();

        }

//类类型

        Person person =new Person();

        person.setAge("15");

        Class aClass = person.getClass();

        System.out.println(aClass.getName());

        try {

//动态加载类dynamic classload e.g. from properties.xml

            Properties properties =new Properties();

            FileInputStream fs =null;

            try {

//                fs = new FileInputStream(new File("pro.properties"));

//                properties.load(fs);

//                String className = properties.getProperty("className");

                Class c = Class.forName("AnotationTest.Person", false, ClassLoader.getSystemClassLoader());

                System.out.println(c.getName());

                Object o = c.newInstance();

                System.out.println(oinstanceof AnotationTest.Person);

                Method method = c.getDeclaredMethod("getAge");

                Method method1 = c.getDeclaredMethod("setName", String.class);//有参,记得指定入参类型

                Object oo = method.invoke(o);

                System.out.println(oo);

            }catch (NoSuchMethodException | InvocationTargetException e) {

e.printStackTrace();

            }

}catch (ClassNotFoundException | InstantiationException | IllegalAccessException e) {

e.printStackTrace();

        }

//通过Class获取类的信息(field,method,constructor,annotation,modifier)

//getXX:获取包括父类的public的XX

//getDeclaredXX:获取本类的声明的所有的XX

//private是否accessible,效率高

//生成对象

        Son son1 =new Son("byte");

        Class sonClass = son1.getClass();

        //field

        for (Field field : sonClass.getFields()) {

System.out.println("field:" + field);

        }

for (Field declaredField : sonClass.getDeclaredFields()) {

System.out.println("declaredField" + declaredField);

        }

try {

System.out.println("get field money of Parent:" + sonClass.getField("money"));

            Field field = sonClass.getDeclaredField("name");

            field.setAccessible(true);

            System.out.println("get field name value of son1:" + field.get(son1));

        }catch (NoSuchFieldException e) {

e.printStackTrace();

        }catch (IllegalAccessException e) {

e.printStackTrace();

        }

try {

Method testReflection = sonClass.getMethod("testReflection", List.class, Map.class);

            Type[] parameterTypes = testReflection.getGenericParameterTypes();

            for (Type parameterType : parameterTypes) {

System.out.println("method input parameterType" + parameterType);

                if (parameterTypeinstanceof ParameterizedType) {

for (Type item : ((ParameterizedType) parameterType).getActualTypeArguments()) {

System.out.println("subType of input parameterType " + parameterType +" is :" + item);

                    }

}

}

}catch (NoSuchMethodException e) {

e.printStackTrace();

        }

//method:获取,通过class调用方法

//获取方法参数

        for (Method method : sonClass.getMethods()) {

System.out.println("method:" + method);

        }

for (Method declaredMethod : sonClass.getDeclaredMethods()) {

System.out.println("declaredMethod:" + declaredMethod);

        }

try {

System.out.println("getAge method: " + sonClass.getDeclaredMethod("setAge", int.class));

            System.out.println("setMoney method: " + sonClass.getMethod("setMoney", int.class));//parameterType for overloading

            System.out.println("son1.getMoney:" + son1.getMoney());

            sonClass.getMethod("setMoney", int.class).invoke(son1, 500);

            System.out.println("son1.getMoney:" + son1.getMoney());

        }catch (NoSuchMethodException e) {

e.printStackTrace();

        }catch (IllegalAccessException e) {

e.printStackTrace();

        }catch (InvocationTargetException e) {

e.printStackTrace();

        }

//constructor,生成对象

        try {

Son son = (Son) sonClass.newInstance();//默认调用无参构造函数

            Constructor constructor = sonClass.getConstructor(String.class);

            Son son2 = (Son) constructor.newInstance("son2");

            System.out.println("son2.getName: " + son2.getName());

        }catch (InstantiationException e) {

e.printStackTrace();

        }catch (IllegalAccessException e) {

e.printStackTrace();

        }catch (NoSuchMethodException e) {

e.printStackTrace();

        }catch (InvocationTargetException e) {

e.printStackTrace();

        }

//Annotation,especially over field

    }

}

"https://labuladong.gitbook.io/algo/"

"https://www.acwing.com/solution/leetcode/"

"https://hk029.gitbooks.io/leetbook/twopoint.html"

"https://github.com/CyC2018/CS-Notes/blob/master/notes/Leetcode%20%E9%A2%98%E8%A7%A3%20-%20%E7%9B%AE%E5%BD%95.md"

"https://github.com/youngyangyang04/leetcode-master"

"https://blog.csdn.net/u013850277/article/details/90647636"

"https://www.itcodemonkey.com/article/15510.html"

"https://juejin.im/post/5cccc9d1f265da0384129e5f"

"https://leetcode-cn.com/problems/search-insert-position/solution/te-bie-hao-yong-de-er-fen-cha-fa-fa-mo-ban-python-/"

"https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/solution/er-fen-cha-zhao-suan-fa-xi-jie-xiang-jie-by-labula/"

"https://blog.csdn.net/yixianfeng41/article/details/55262171" 

"https://blog.csdn.net/yixianfeng41/article/details/52955264"

"https://www.jianshu.com/p/32bcc45efd32" 

"https://www.cnblogs.com/little-YTMM/p/5372680.html" 

"https://blog.csdn.net/weixin_43272781/article/details/82959089" 

"https://www.jianshu.com/p/a0941781926d" 

"https://www.cnblogs.com/xdecode/p/9321848.html" 

"https://www.cnblogs.com/Elliott-Su-Faith-change-our-life/p/7472265.html"

"https://leetcode-cn.com/problems/reverse-linked-list/solution/dong-hua-yan-shi-206-fan-zhuan-lian-biao-by-user74/"

"https://weixin.sogou.com/"

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • 单例模式 让一个类在java内存中只创建一个对象 //懒汉式 饱汉式 public class MyTool ...
    4d5b10d2437f阅读 259评论 0 0
  • 什么是反射 反射是一个很牛的功能,能够在程序运行时修改程序的行为。但是反射是非常规手段,反射有风险,应用需谨慎。把...
    dashingqi阅读 600评论 0 1
  • Java高级编程之类加载 当程序要使用某个类时,如果该类还未被加载到内存中,则系统会通过加载,连接,初始化三步来实...
    清枫_小天阅读 2,034评论 1 40
  • 类的加载 当程序要使用某个类时,如果该类还未被加载到内存中,则系统会通过加载,连接,初始化三步来实现对这个类进行初...
    HUIYL1阅读 176评论 0 0
  • 类加载器当程序要使用某个类时,如果该类还没有被加载到内存中,则系统会通过加载,链接,初始化这三步来实现对这个类进行...
    Stringer阅读 313评论 0 0