How is ThreadLocal implemented? Is it implemented in Java (using some concurrent map from ThreadID to object), or does it use some JVM hook to do it more efficiently?
|
|
|
|
|
|
|
You mean |
||||||||
|
|
|
Here is a good example for using TLS (thead-local-storage) variables in Java.
public class Main {
public static void main(String[] argv) throws Exception {
ThreadLocal localThread = new ThreadLocal();
Object o = localThread.get();
localThread.set(o);
}
}
|
||||
|
|
|
ThreadLocal variables in Java works by accessing a HashMap held by the Thread.currentThread() instance. |
|||
|
|
|
|
I think you are referring to ThreadLocal? Source is here. |
||
|
|
