ThreadLocal实现线程范围的共享变量

这里先说下ThreadLocal不是一个线程的本地实现版本,不是一个Thread,它是thread local variable(线程局部变量);用于实现线程内的数据共享,即对于相同的程序代码,多个模块在同一个线程中运行时要共享一份数据,而在另外线程中运行时又共享另外一份数据。换一句话说就是为每一个使用该变量的线程都提供一个变量值的副本,是每一个线程都可以独立地改变自己的副本,而不会和其它线程的副本冲突。从线程的角度看,就好像每一个线程都完全拥有该变量

现做一个小练习,定义一个全局共享的ThreadLocal变量,然后启动五个线程向该ThreadLocal变量中存储一个随机值,接着各个线程调用另外其他多个类的方法,这多个类的方法中读取这个ThreadLocal变量的值,就可以看到多个类在同一个线程中共享同一份数据。

 

定义两个类TestA TestB,用于获取值MyThreadLocal类中的X

TestA:

package com.study.threadlocal;

/**
 * 
 * @ClassName: TestA
 * @Description: 用于获取 MyThreadLocal 中变量x的值
 * @author 我夕

 */
public class TestA {
	
	public void print(){
		System.out.println(Thread.currentThread()+": TestA ,x current value is:"+MyThreadLocal.getInstance().getX());
	}
}



TestB:

package com.study.threadlocal;
/**
 * 
 * @ClassName: TestB
 * @Description: 用于获取 MyThreadLocal 中变量x的值
 * @author 我夕
 */
public class TestB {
	public void print(){
		System.out.println(Thread.currentThread()+": TestB ,x current value is:"+MyThreadLocal.getInstance().getX());
	}
}



MyThreadLocal:

package com.study.threadlocal;
/**
 * 
 * @ClassName: MyThreadLocal
 * @Description: TODO
 * @author 我夕
 */
public class MyThreadLocal {
	
	private Integer x;
	
	//将构造器声明有私有的,避免外部创建他
	private MyThreadLocal(){}
	
	private static ThreadLocal instanceThreadLocal=new ThreadLocal();//new ThreadLocal
	
	public static MyThreadLocal getInstance(){
		MyThreadLocal instance=(MyThreadLocal)instanceThreadLocal.get();
		if(instance==null){
			instance=new MyThreadLocal();
			instanceThreadLocal.set(instance);
		}
		return instance;
	}

	public Integer getX() {
		return x;
	}

	public void setX(Integer x) {
		this.x = x;
	}
	//除去线程的方法
	public static void remove(){
		instanceThreadLocal.remove();
	}

}



ThreadLocalTest

package com.study.threadlocal;

import java.util.Random;

/**
 * 
 * @ClassName: ThreadLocalTest
 * @Description: 线程局部变量练习
 * @author 我夕
 */
public class ThreadLocalTest {
	
	public static void main(String[] args) {
		
		final TestA testA=new TestA();
		final TestB testB=new TestB();
		
		//创建5个线程
		for(int i=0;i<5;i++){
			Thread thread=new Thread(new Runnable() {
				
				@Override
				public void run() {
					//生成一个随机数字给x
					MyThreadLocal.getInstance().setX(new Random().nextInt(100));
					System.out.println(Thread.currentThread()+",X current value is:"+MyThreadLocal.getInstance().getX());
					testA.print();
					testB.print();
					MyThreadLocal.getInstance().remove();

				}
			});
			thread.setName("thread_"+i);
			thread.start();
		}
		
	}
}


运行

从以上可以看出,TestA TestB确实在同一个线程中共享同一份数据。

 

接下来,分析下 ThreadLocal set()get()方法源码

set源码:

     /**
     * Sets the current thread's copy of this thread-local variable
     * to the specified value.  Most subclasses will have no need to
     * override this method, relying solely on the {@link #initialValue}
     * method to set the values of thread-locals.
     *
     * @param value the value to be stored in the current thread's copy of
     *        this thread-local.
     */
    public void set(T value) {
        Thread t = Thread.currentThread();
        ThreadLocalMap map = getMap(t);
        if (map != null)
            map.set(this, value);
        else
            createMap(t, value);
    }


 

get源码

    /**
     * Returns the value in the current thread's copy of this
     * thread-local variable.  If the variable has no value for the
     * current thread, it is first initialized to the value returned
     * by an invocation of the {@link #initialValue} method.
     *
     * @return the current thread's value of this thread-local
     */
    public T get() {
        Thread t = Thread.currentThread();
        ThreadLocalMap map = getMap(t);
        if (map != null) {
            ThreadLocalMap.Entry e = map.getEntry(this);
            if (e != null)
                return (T)e.value;
        }
        return setInitialValue();
    }

 

set()get()方法,我想大家应该都知道其的作用了,set设置当前线程的线程局部变量副本的值,get返回当前线程的线程局部变量副本的值,其set方法相当于往其内部的map中增加一条记录,key分别是各自的线程,value是各自的set方法传进去的值,在线程结束时可以调用ThreadLocal.clear()方法,这样会更快释放内存,不调用也可以,因为线程结束后也可以自动释放相关的ThreadLocal变量。


 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值