Java ThreadLocal initialValue() 方法



描述

Java ThreadLocal initialValue() 方法返回此线程局部变量的当前线程的初始值

声明

以下是java.lang.ThreadLocal.initialValue() 方法的声明

protected T initialValue()

参数

返回值

此方法返回此线程局部的初始值。

异常

示例:使用 ThreadLocal 对象的初始值作为整数

以下示例演示了 Java ThreadLocal initialValue() 方法的用法。我们通过扩展 Thread 创建了一个 NewThread 类。在这个类中,我们有一个 ThreadLocal 对象 t,其重写了 initialValue() 方法,该方法返回实例值并将其减 1。在 run 方法中,我们打印当前线程名称和实例值。

package com.tutorialspoint;

public class ThreadLocalDemo {

   public static void main (String [] args) {

      NewThread t1 = new NewThread("R");
      NewThread t2 = new NewThread("S");

      // this will call run() method
      t1.start();
      t2.start();
   }
}

class NewThread extends Thread {
   private static ThreadLocal t = new ThreadLocal() {
      protected Object initialValue() {
         return Integer.valueOf(n--);
      }
   };

   private static int n = 10;
   NewThread(String name) {
      super(name);
   }

   public void run() {
      for(int i = 0; i < 2; i++){
         System.out.println (getName() + " " + t.get());
      }
   }
} 

输出

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

R 9
R 9
S 10
S 10

示例:使用 ThreadLocal 对象的初始值作为双精度浮点数

以下示例演示了 Java ThreadLocal initialValue() 方法的用法。我们通过扩展 Thread 创建了一个 NewThread 类。在这个类中,我们有一个 ThreadLocal 对象 t,其重写了 initialValue() 方法,该方法返回实例值并将其减 1。在 run 方法中,我们打印当前线程名称和实例值。

package com.tutorialspoint;

public class ThreadLocalDemo {

   public static void main (String [] args) {

      NewThread t1 = new NewThread("R");
      NewThread t2 = new NewThread("S");

      // this will call run() method
      t1.start();
      t2.start();
   }
}

class NewThread extends Thread {
   private static ThreadLocal t = new ThreadLocal() {
      protected Object initialValue() {
         return Double.valueOf(n--);
      }
   };

   private static double n = 10.0;
   NewThread(String name) {
      super(name);
   }

   public void run() {
      for(int i = 0; i < 2; i++){
         System.out.println (getName() + " " + t.get());
      }
   }
} 

输出

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

S 10.0
R 10.0
S 10.0
R 10.0

示例:使用 ThreadLocal 对象的初始值作为单精度浮点数

以下示例演示了 Java ThreadLocal initialValue() 方法的用法。我们通过扩展 Thread 创建了一个 NewThread 类。在这个类中,我们有一个 ThreadLocal 对象 t,其重写了 initialValue() 方法,该方法返回实例值并将其减 1。在 run 方法中,我们打印当前线程名称和实例值。

package com.tutorialspoint;

public class ThreadLocalDemo {

   public static void main (String [] args) {

      NewThread t1 = new NewThread("R");
      NewThread t2 = new NewThread("S");

      // this will call run() method
      t1.start();
      t2.start();
   }
}

class NewThread extends Thread {
   private static ThreadLocal t = new ThreadLocal() {
      protected Object initialValue() {
         return Float.valueOf(n--);
      }
   };

   private static float n = 10.0f;
   NewThread(String name) {
      super(name);
   }

   public void run() {
      for(int i = 0; i < 2; i++){
         System.out.println (getName() + " " + t.get());
      }
   }
} 

输出

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

R 10.0
R 10.0
S 9.0
S 9.0
java_lang_threadlocal.htm
广告