java.lang
Class ThreadLocal<T>

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.ThreadLocal<T>
Direct Known Subclasses:
InheritableThreadLocal sample code for java.lang.InheritableThreadLocal definition code for java.lang.InheritableThreadLocal

public class ThreadLocal<T>
extends Object sample code for java.lang.Object definition code for java.lang.Object

This class provides thread-local variables. These variables differ from their normal counterparts in that each thread that accesses one (via its get or set method) has its own, independently initialized copy of the variable. ThreadLocal instances are typically private static fields in classes that wish to associate state with a thread (e.g., a user ID or Transaction ID).

For example, in the class below, the private static ThreadLocal instance (serialNum) maintains a "serial number" for each thread that invokes the class's static SerialNum.get() method, which returns the current thread's serial number. (A thread's serial number is assigned the first time it invokes SerialNum.get(), and remains unchanged on subsequent calls.)

 public class SerialNum {
     // The next serial number to be assigned
     private static int nextSerialNum = 0;

     private static ThreadLocal serialNum = new ThreadLocal() {
         protected synchronized Object initialValue() {
             return new Integer(nextSerialNum++);
         }
     };

     public static int get() {
         return ((Integer) (serialNum.get())).intValue();
     }
 }
 

Each thread holds an implicit reference to its copy of a thread-local variable as long as the thread is alive and the ThreadLocal instance is accessible; after a thread goes away, all of its copies of thread-local instances are subject to garbage collection (unless other references to these copies exist).

Since:
1.2

Constructor Summary
ThreadLocal sample code for java.lang.ThreadLocal.ThreadLocal() definition code for java.lang.ThreadLocal.ThreadLocal() ()
          Creates a thread local variable.
 
Method Summary
 T get sample code for java.lang.ThreadLocal.get() definition code for java.lang.ThreadLocal.get() ()
          Returns the value in the current thread's copy of this thread-local variable.
protected  T initialValue sample code for java.lang.ThreadLocal.initialValue() definition code for java.lang.ThreadLocal.initialValue() ()
          Returns the current thread's initial value for this thread-local variable.
 void remove sample code for java.lang.ThreadLocal.remove() definition code for java.lang.ThreadLocal.remove() ()
          Removes the value for this ThreadLocal.
 void set sample code for java.lang.ThreadLocal.set(T) definition code for java.lang.ThreadLocal.set(T) (T value)
          Sets the current thread's copy of this thread-local variable to the specified value.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

ThreadLocal sample code for java.lang.ThreadLocal() definition code for java.lang.ThreadLocal()

public ThreadLocal()
Creates a thread local variable.

Method Detail

initialValue sample code for java.lang.ThreadLocal.initialValue() definition code for java.lang.ThreadLocal.initialValue()

protected T initialValue()
Returns the current thread's initial value for this thread-local variable. This method will be invoked at most once per accessing thread for each thread-local, the first time the thread accesses the variable with the get() sample code for java.lang.ThreadLocal.get() definition code for java.lang.ThreadLocal.get() method. The initialValue method will not be invoked in a thread if the thread invokes the set(T) sample code for java.lang.ThreadLocal.set(T) definition code for java.lang.ThreadLocal.set(T) method prior to the get method.

This implementation simply returns null; if the programmer desires thread-local variables to be initialized to some value other than null, ThreadLocal must be subclassed, and this method overridden. Typically, an anonymous inner class will be used. Typical implementations of initialValue will invoke an appropriate constructor and return the newly constructed object.

Returns:
the initial value for this thread-local

get sample code for java.lang.ThreadLocal.get() definition code for java.lang.ThreadLocal.get()

public T get()
Returns the value in the current thread's copy of this thread-local variable. Creates and initializes the copy if this is the first time the thread has called this method.

Returns:
the current thread's value of this thread-local

set sample code for java.lang.ThreadLocal.set(T) definition code for java.lang.ThreadLocal.set(T)

public void set(T value)
Sets the current thread's copy of this thread-local variable to the specified value. Many applications will have no need for this functionality, relying solely on the initialValue() sample code for java.lang.ThreadLocal.initialValue() definition code for java.lang.ThreadLocal.initialValue() method to set the values of thread-locals.

Parameters:
value - the value to be stored in the current threads' copy of this thread-local.

remove sample code for java.lang.ThreadLocal.remove() definition code for java.lang.ThreadLocal.remove()

public void remove()
Removes the value for this ThreadLocal. This may help reduce the storage requirements of ThreadLocals. If this ThreadLocal is accessed again, it will by default have its initialValue.

Since:
1.5