gpt4 book ai didi

java - ClassLoader.getSystemClassLoader() 与 obj.getClass().getClassLoader().getSystemClassLoader()

转载 作者:搜寻专家 更新时间:2023-11-01 03:15:41 28 4
gpt4 key购买 nike

这些是否完全相同:

ClassLoader.getSystemClassLoader() // 1

对比:

obj.getClass().getClassLoader().getSystemClassLoader() // 2
Person.class.getClassLoader().getSystemClassLoader()

是否存在可能产生不同结果的情况?

最佳答案

根据 ClassLoader.getSystemClassLoader() javadoc这通常是用于启动应用程序的类加载器。 java.system.class.loader 属性可用于覆盖返回的类加载器,但是:

The system property to override the system class loader is not examined until the VM is almost fully initialized. Code that executes this method during startup should take care not to cache the return value until the system is fully initialized.

在更复杂的设置中,obj.getClass().getClassLoader()Person.class.getClassLoader() 可以返回自定义类加载器,例如OSGI .返回系统类加载器完全取决于这个自定义类加载器。它可能会选择不,例如因为它会绕过 OSGI 绑定(bind)类加载边界,请参阅 this answer .

所以大多数时候它们应该是相同的,但是没有什么能阻止您配置 JVM 或编写使它们不同的软件。

关于java - ClassLoader.getSystemClassLoader() 与 obj.getClass().getClassLoader().getSystemClassLoader(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54037306/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com