vote up 2 vote down star

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?

flag

63% accept rate

4 Answers

vote up 12 vote down check

You mean java.lang.ThreadLocal. It's quite simple, really, it's just a Map of name-value pairs stored inside each Thread object (see the Thread.threadLocals field). The API hides that implementation detail, but that's more or less all there is to it.

link|flag
So, it incurs no locks or contention, right? – ripper234 Jul 30 at 6:16
I can't see why any should be needed, given that by definition the data is only visible to a single thread. – skaffman Jul 30 at 7:14
3  
Correct, there's no synchronisation or locking around or within the ThreadLocalMap, as it's only accessed in-thread. – Cowan Jul 30 at 7:31
vote up -3 vote down

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);

  }
}
link|flag
2  
Not really an answer to the question.. the asker understands what they are, and wants to know the implementation, not the usage. – Cowan Jul 30 at 23:15
vote up 3 vote down

ThreadLocal variables in Java works by accessing a HashMap held by the Thread.currentThread() instance.

link|flag
vote up 1 vote down

I think you are referring to ThreadLocal?

Source is here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.