Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement thread local variables in ThreadLocal

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

It is believed that many inexperienced people have no idea about how to implement thread local variables in ThreadLocal. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

Public class ThreadLocal1 {volatile static Person p = new Person (); public static void main (String [] args) {new Thread (()-> {try {TimeUnit.SECONDS.sleep (2)) } catch (InterruptedException e) {e.printStackTrace ();} System.out.println (p.name);}) .start () New Thread (()-> {try {TimeUnit.SECONDS.sleep (1);} catch (InterruptedException e) {e.printStackTrace () } p.name = "lisi";}. Start ();}} class Person {String name = "zhangsan";}

Don't want another thread to change to lisi

/ * * ThreadLocal thread local variable * * ThreadLocal uses space for time, and synchronized uses time for space * for example, session exists in hibernate and ThreadLocal, avoid the use of synchronized * * run the following program, understand ThreadLocal * * / public class ThreadLocal2 {/ / volatile static Person p = new Person (); static ThreadLocal tl = new ThreadLocal () Public static void main (String [] args) {new Thread (()-> {try {TimeUnit.SECONDS.sleep (2)) } catch (InterruptedException e) {e.printStackTrace ();} System.out.println (tl.get ());}) .start () New Thread (()-> {try {TimeUnit.SECONDS.sleep (1);} catch (InterruptedException e) {e.printStackTrace () } tl.set (new Person ());}. Start ();} static class Person {String name = "zhangsan";}} after reading the above, have you mastered how to implement thread local variables in ThreadLocal? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report