The difference between threadlocal and inheritablethreadlocal

Source: Internet
Author: User

ThreadLocal: Binds only to the current thread

Inheritablethreadlocal: Passes the value to the child thread and shares the value with the child thread


Use threadlocal, between parent and child threads, do not share value

Final threadlocal<string> tl = new threadlocal<string> ();

Tl.set ("Threadlocal-val");

System.out.println ("Main-1:" + tl.get ());

New Thread () {

public void Run () {

System.out.println ("Child-1:" + tl.get ());

};

}.start ();

Using inheritablethreadlocal, parent thread value allows child threads to share

Final threadlocal<string> ITL = new inheritablethreadlocal<string> ();

Itl.set ("Inheritablethreadlocal-val");

System.out.println ("Main-2:" + itl.get ());

New Thread () {

public void Run () {

System.out.println ("Child-2:" + itl.get ());

};

}.start ();


The difference between threadlocal and inheritablethreadlocal

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.