java.lang.Class类的getClassLoader()方法用于获取此实体的classLoader。该实体可以是类,数组,接口等。该方法返回此实体的classLoader。
用法:
public ClassLoader getClassLoader()
参数:此方法不接受任何参数。
返回值:此方法返回实体的ClassLoader。
下面的程序演示了getClassLoader()方法。
示例1:
// Java program to demonstrate getClassLoader() method
public class Test {
public static void main(String[] args)
throws ClassNotFoundException
{
// returns the Class object for this class
Class myClass = Class.forName("Test");
System.out.println("Class represented by myClass: "
+ myClass.toString());
// Get the classLoader of myClass
// using getClassLoader() method
System.out.println("ClassLoader of myClass: "
+ myClass.getClassLoader());
}
}
输出:
Class represented by myClass: class Test ClassLoader of myClass: sun.misc.Launcher$AppClassLoader@42a57993
示例2:
// Java program to demonstrate getClassLoader() method
public class Test {
class Arr {
}
public static void main(String[] args)
throws ClassNotFoundException
{
// returns the Class object for Arr
Class arrClass = Arr.class;
// Get the classLoader of arrClass
// using getClassLoader() method
System.out.println("ClassLoader of arrClass: "
+ arrClass.getClassLoader());
}
}
输出:
ClassLoader of arrClass: sun.misc.Launcher$AppClassLoader@42a57993
参考: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getClassLoader–
相关用法
- Java Class getEnclosingMethod()用法及代码示例
- Java Class getDeclaringClass()用法及代码示例
- Java Class getModifiers()用法及代码示例
- Java Class getEnclosingClass()用法及代码示例
- Java Class getComponentType()用法及代码示例
- Java Class isAnnotationPresent()用法及代码示例
- Java Class getEnclosingConstructor()用法及代码示例
- Java Class getMethod()用法及代码示例
- Java Class getGenericInterfaces()用法及代码示例
- Java Class getConstructor()用法及代码示例
- Java Class getDeclaredConstructor()用法及代码示例
- Java Class getDeclaredField()用法及代码示例
- Java Class getDeclaredMethod()用法及代码示例
- Java Class getAnnotation()用法及代码示例
- Java Class getSuperclass()用法及代码示例
注:本文由纯净天空筛选整理自srinam大神的英文原创作品 Class getClassLoader() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。