Java 线程 getContextClassLoader() 方法



描述

Java Thread getContextClassLoader() 方法返回此线程的上下文类加载器。上下文类加载器由线程的创建者提供,供在此线程中运行的代码在加载类和资源时使用。

声明

以下是 java.lang.Thread.getContextClassLoader() 方法的声明

public ClassLoader getContextClassLoader()

参数

返回值

此方法返回此线程的上下文类加载器。

异常

SecurityException - 如果存在安全管理器并且其 checkPermission 方法不允许获取上下文类加载器。

示例:获取上下文类加载器

以下示例演示了 Java Thread getContextClassLoader() 方法的使用。在此程序中,我们通过实现 Runnable 接口创建了一个线程类 ThreadDemo。在构造函数中,使用 new Thread 创建了一个新线程。在 run() 方法中,我们使用 getContextClassLoader() 方法检索了线程的上下文类加载器,然后设置了它。最后,我们打印了类和父类。

package com.tutorialspoint;

public class ThreadDemo implements Runnable {

   Thread t;

   ThreadDemo() {

      t = new Thread(this);
      // this will call run() function
      t.start();
   }

   public void run() {

      ClassLoader c = t.getContextClassLoader();
      // sets the context ClassLoader for this Thread
      t.setContextClassLoader(c);
      System.out.println("Class = " + c.getClass());
      System.out.println("Parent = " + c.getParent());
   }

   public static void main(String args[]) {
      new ThreadDemo();
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Class = class jdk.internal.loader.ClassLoaders$AppClassLoader
Parent = jdk.internal.loader.ClassLoaders$PlatformClassLoader@15aea7ab
java_lang_thread.htm
广告