线程是操作系统中独立的个体,但这些个体如果不经过特殊的处理就不能成为一个整体。线程间的通信就是成为整体的必用方案之一,可以说,使线程间进行通信后,系统之间的交互性会更强大,在大大提高CPU利用率的同时还会使程序员对各线程任务在处理的过程中进行有效的把控与监督。
在本章中需要着重掌握的技术点如下:
- 方法join的使用
- ThreadLocal类的使
4.方法join的使用
在很多情况下,主线程创建并启动了子线程,如果子线程中要进行大量的耗时运算,主线程往往将早于子线程之前结束。这时,如果主线程想等待子线程执行完成之后再结束,比如子线程处理一个数据,主线程要取得这个数据中的值,就要用到 join() 方法了。方法 join() 的作用是等待线程对象销毁。
示例代码:
public class MyThread extends Thread{
@Override
public void run() {
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+"执行完毕");
}
public static void main(String[] args) throws InterruptedException {
MyThread thread = new MyThread();
thread.start();
thread.join();
System.out.println("我想在thread执行完之后执行,我做到了");
}
}
打印结果:
Thread-0执行完毕
我想在thread执行完之后执行,我做到了
方法join() 的作用是使所属的线程对象 x 正常执行 run() 方法中的任务,而使当前线程 z 进行无限期的阻塞,等待线程x 销毁后再继续执行线程z 后面的代码。
join与synchronized的区别是:join 在内部使用 wait() 方法进行等待,而synchronize 关键字使用的是“对象监视器”原理做为同步。
在前面已经讲到:当线程呈 wait() 方法时,调用线程对象的 interrupt() 方法会出现 InterruptedException 异常。说明方法 join() 和 interrupt() 方法如果彼此遇到,则会出现异常。
4.1 方法 join(long) 的使用
方法 join(long) 中的参数是设定等待的时间。
4.2 join(long) 和 sleep(long) 的区别
方法 join(long) 的功能在内部是使用 wait(long) 方法来实现的,所以 join(long) 方法具有释放锁的特点。
方法 join(long) 的源代码如下:
public final synchronized void join(long millis) throws InterruptedException {
long base = System.currentTimeMillis();
long now = 0;
if (millis < 0) {
throw new IllegalArgumentException("timeout value is negative");
}
if (millis == 0) {
while (isAlive()) {
wait(0);
}
} else {
while (isAlive()) {
long delay = millis - now;
if (delay <= 0) {
break;
}
wait(delay);
now = System.currentTimeMillis() - base;
}
}
}
从源代码可以了解到,当执行 wait(long) 方法后,当前线程的锁被释放,那么其他线程就可以调用此线程中的同步方法了。而 Thread.sleep() 方法却不释放锁。
5.类ThreadLocal的使用
变量值的共享可以使用 public static 变量的形式,所有的线程都使用同一个 public static 变量。如果想实现每一个线程都有自己的共享变量该如何解决呢?JDK中提供的类ThreadLocal正是为了解决这样的问题。
类ThreadLocal 主要解决的就是每个线程绑定自己的值,可以将 ThreadLocal 类比喻成全局存放数据的盒子,盒子中可以存储每个线程的私有数据。
示例代码:
public class LocalThread extends Thread {
private static ThreadLocal local = new ThreadLocal();
@Override
public void run() {
local.set("线程的值");
System.out.println("thread线程:"+ local.get());
}
public static void main(String[] args) throws InterruptedException {
System.out.println(local.get());
local.set("main的值");
LocalThread t = new LocalThread();
t.start();
Thread.sleep(1000);
System.out.println("main线程:"+ local.get());
}
}
打印结果:
null
thread线程:线程的值
main线程:main的值
在第一次调用get()方法返回的是null,怎么样能实现第一次调用get()不返回 null 呢?也就是具有默认值的效果。
答案是继承 LocalThread 类重写 initialValue() 方法:
public class Local extends ThreadLocal {
@Override
protected Object initialValue() {
return new Date();
}
}
ThreadLocal原理
ThreadLocal内部使用了ThreadLocalMap,ThreadLocal的set方法内部通过当前线程对象获取ThreadLocalMap对象,然后将当前ThreadLocal对象作为Key与Value一起保存到ThreadLocalMap中。
public void set(T value) {
Thread t = Thread.currentThread();
ThreadLocalMap map = getMap(t);
if (map != null)
map.set(this, value);
else
createMap(t, value);
}
ThreadLocal的get方法内部也是通过当前线程对象获取ThreadLocalMap对象,把当前ThreadLocal对象作为Key,获取Value。
public T get() {
Thread t = Thread.currentThread();
ThreadLocalMap map = getMap(t);
if (map != null) {
ThreadLocalMap.Entry e = map.getEntry(this);
if (e != null) {
@SuppressWarnings("unchecked")
T result = (T)e.value;
return result;
}
}
return setInitialValue();
}
6.类 InheritableThreadLocal 的使用
使用类 InheritableThreadLocal 可以在子线程中取得父线程继承下来的值。
示例代码:
public class LocalThread extends Thread {
private static InheritableThreadLocal local = new InheritableThreadLocal();
@Override
public void run() {
System.out.println("thread线程:"+ local.get());
}
public static void main(String[] args) throws InterruptedException {
local.set("main的值");
LocalThread t = new LocalThread();
t.start();
System.out.println("main线程:"+ local.get());
}
}
如果想要自定义 get() 方法默认值,具体操作也和 ThreadLocal 是一样的。
public class Local extends InheritableThreadLocal {
@Override
protected Object initialValue() {
return new Date();
}
}
InheritableThreadLocal 提供继承的同时还可以进行进一步的处理。代码如下:
public class Local extends InheritableThreadLocal {
@Override
protected Object initialValue() {
return new Date();
}
@Override
protected Object childValue(Object parentValue) {
return parentValue+"[子线程增强版]";
}
}
但在使用 InheritableThreadLocal 类需要注意一点的是,如果子线程在取得值的同时,主线程将 InheritableThreadLocal 中的值进行更改,那么子线程取到的值还是旧值。
7.文末总结
经过本文的学习,可以将以前分散的线程对象进行彼此的通信与协作,线程任务不再是单打独斗,更具有团结性,因为它们之间可以相互通信。
嗨,你还在看吗?
文章来源:微信公众号 薛勤的博客