Prev Next

Java / Java ThreadLocal

Accessing a ThreadLocal Variable.

After the ThreadLocal variable has been created or instantiated, the thread can set the value of the created ThreadLocal instance using the below snippet.

myThrLocalVariable.set("Thread A's ThreadLocal value");

The set() method accepts an Object as argument.

The thread can access the value of its ThreadLocal variable using the below code.

String thrLocalVarValue = (String) myThrLocalVariable.get();

The return type of get() method is an Object.

More Related questions...

Show more question and Answers...


Comments & Discussions