大家好,又见面了,我是你们的朋友全栈君。
ClassLoader getClassLoader()
描述 (Description)
java.lang.Class.getClassLoader()方法返回类的类加载器。 某些实现可能使用null来表示引导类加载器。 如果此类由引导类加载器加载,则此方法将在此类实现中返回null。
声明 (Declaration)
以下是java.lang.Class.getClassLoader()方法的声明public ClassLoader getClassLoader()
参数 (Parameters)
NA
返回值 (Return Value)
此方法返回加载此对象表示的类或接口的类加载器。
异常 (Exception)
SecurityException – 如果存在安全管理器且其checkPermission方法拒绝访问该类的类加载器。
例子 (Example)
以下示例显示了java.lang.Class.getClassLoader()方法的用法。package com.iowiki;
import java.lang.*;
public class ClassDemo {
public static void main(String[] args) {
try {
// returns the Class object associated with this class
Class cls = Class.forName(“com.iowiki.ClassDemo”);
// returns the ClassLoader object associated with this Class.
ClassLoader cLoader = cls.getClassLoader();
if (cLoader == null) {
System.out.println(“The default system class was used.”);
} else {
// returns the class loader
Class loaderClass = cLoader.getClass();
System.out.println(“Class associated with ClassLoader = ” +
loaderClass.getName());
}
} catch (ClassNotFoundException e) {
System.out.println(e.toString());
}
}
}
让我们编译并运行上面的程序,这将产生以下结果 -Class associated with ClassLoader = sun.misc.Launcher$AppClassLoader
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/132477.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...