我是靠谱客的博主 鳗鱼小笼包,最近开发中收集的这篇文章主要介绍java多个类加载器_java – 通过多个类加载器获得的类实例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我正在阅读

this文章,它说:

If we have two instances of Student class loaded by these CustomClassLoaders say student1 and student2, then student1 and student2 are not type-compatible. In other words,

Student student3 = (Student) student2;

will throw ClassCastException, because the JVM sees these two as separate, distinct class types, since they are defined by different ClassLoader instances.

现在我明白了它想传达的内容:那就是如果我们通过使用两个不同的类加载器加载相同的类然后它们将不是类型兼容的.所以很好.

但它使用的例子让我感到困惑,即

Student student3 = (Student) student2;

当我们声明像Student student这样的引用变量时,编译器所寻找的是这个Studnet是否符合其包结构的正确位置.现在我们在运行时将这个引用变量分配给一个真实的加载类,我们用来加载上述类的类加载器真的很重要吗?我怀疑,因为根据我的理解,类加载器只有在我们执行’new’或者我们在其上调用静态字段时才会起作用而不是当我们简单地声明它的一种类型.

请在此澄清我,并帮助我纠正我对这方面的理解.

谢谢,

Mawia

最后

以上就是鳗鱼小笼包为你收集整理的java多个类加载器_java – 通过多个类加载器获得的类实例的全部内容,希望文章能够帮你解决java多个类加载器_java – 通过多个类加载器获得的类实例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部