Java多線程與並發應用-(5)-如何優雅的使用ThreadLocal類

來源:互聯網
上載者:User

標籤:安全執行緒   並發   java   多線程   

內容來自,張孝祥老師的張孝祥-Java多線程與並發庫進階應用程式》視頻教程

package com.lipeng;public class MyThreadLocalTest2 {private final static MyThreadLocal<String> myThreadLocal=new MyThreadLocal<String>();/** * @param args */public static void main(String[] args) {new Thread(){public void run() {ThreadLocalData.getThreadLocalData().setAge(12);ThreadLocalData.getThreadLocalData().setName("張三");System.out.println(Thread.currentThread().getName()+"----------------"+A.getName());System.out.println(Thread.currentThread().getName()+"----------------"+B.getName());};}.start();new Thread(){public void run() {ThreadLocalData.getThreadLocalData().setAge(18);ThreadLocalData.getThreadLocalData().setName("李四");System.out.println(Thread.currentThread().getName()+"----------------"+A.getName());System.out.println(Thread.currentThread().getName()+"----------------"+B.getName());};}.start();}static class A{public static String getName(){return  ThreadLocalData.getThreadLocalData().getName();}public static void setName(String name){myThreadLocal.set(name);}}static class B{public static String getName(){return  ThreadLocalData.getThreadLocalData().getName();}public static void setName(String name){myThreadLocal.set(name);}}}class ThreadLocalData{private static ThreadLocal<ThreadLocalData> threadLocal=new ThreadLocal<ThreadLocalData>();private String name;private int age;private ThreadLocalData(){  //不提供public的構造方法,只提供一個靜態Factory 方法,此方法返回與當前線程有關的當前類的執行個體對象。}public static ThreadLocalData getThreadLocalData(){ThreadLocalData threadLocalData=threadLocal.get();if(threadLocalData==null){threadLocalData=new ThreadLocalData();threadLocal.set(threadLocalData);}return threadLocalData;}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}}<span style="white-space:pre"></span>我們在擷取一個與線程綁定的對象時,不希望看到ThreadLocal,而是直接得到與當前線程綁定的對象,在這裡,將線程綁定的類的構造方法private,提供一個靜態方法,使得要獲得這個類的對象,必須通過這個方法,而這個方法是從ThradLocal中get到的即使當前線程綁定的執行個體。


Java多線程與並發應用-(5)-如何優雅的使用ThreadLocal類

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.