1 Star 0 Fork 0

losidk/java_notes

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
ClassLoaderDemo.java 434 Bytes
Copy Edit Raw Blame History
losidk authored 2021-04-23 07:50 +08:00 . init
// 类加载器
public class ClassLoaderDemo {
public static void main(String args[]) {
ClassLoader c1 = ClassLoader.getSystemClassLoader();
System.out.println(c1); //sun.misc.Launcher$AppClassLoader@18b4aac2
ClassLoader c2 = c1.getParent();
System.out.println(c2); //sun.misc.Launcher$ExtClassLoader@4554617c
ClassLoader c3 = c2.getParent();
System.out.println(c3);//null
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/losidk/java_notes.git
git@gitee.com:losidk/java_notes.git
losidk
java_notes
java_notes
master

Search