线程数据共享
- 数据(即任意的对象)在多个线程之间的共享
方式一:构造方法传入共享数据(对象)
测试类
public class ThreadShareDataTest {
public static void main(String[] args) {
Object object = new Object();
NewThread newThread1 = new NewThread(object);
NewThread newThread2 = new NewThread(object);
newThread1.start();
newThread2.start();
}
}
线程类
class NewThread extends Thread{
Object object;
public NewThread(Object object) {
this.object = object;
}
@Override
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(getName() + object + "--->" + i);
}
}
}
结果:在两个线程之间是同一个对象,这样就实现了数据的共享
方式二:在线程类中定义静态成员变量
- 在线程类中定义一个静态的成员变量,可以通过类名给变量赋值
测试类
public class ThreadShareDataTest {
public static void main(String[] args) {
NewThread newThread1 = new NewThread();
NewThread newThread2 = new NewThread();
ExecutorService executorService = Executors.newFixedThreadPool(2);
executorService.submit(newThread1);
executorService.submit(newThread2);
executorService.shutdown();
}
}
线程类
class NewThread extends Thread{
static Object object = new Object();
@Override
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(currentThread().getName()+ "--->" + getName() + "--->" + object + "--->" + i);
}
}
}
结果
虽然可能多次运行的线程的运行顺序可能不同,但是只要在一个线程拿到对象锁之后,其他线程就需要等待,在一个线程执行完之后释放锁之后,再开始另外一个线程。
-
线程之间数据共享的意义也在于多个线程之间持有的锁对象是同一个对象,这样多个线程就实现了串行执行,不会出现交叉执行的现象,否则多个线程之间持有的锁对象不是同一个对象,将无法串行化。
-
锁对象其实也可以是Class类对象,使用 类名.class或Class.forName(“全类名”)或者 对象.getClass() 由于Class类的构造方法是私有的,且为单例模式,所以使用类名.class 作为锁对象也是可以的。
线程协作
wait()方法
- 对象锁调用了wait()方法会使当前持有该对象锁的线程处于线程等待状态同时该线程释放对对象锁的控制权,直到在其他线程中该对象锁调用notify()方法或notifyAll()方法时等待此对象锁的线程才会被唤醒
notify()方法
- 对象锁调用notify()方法就会唤醒在此对象锁上等待的单个线程
notifyAll()方法
- 对象锁调用notifyAll()方法就会唤醒在此对象锁上等待的所有线程;调用notifyAll()方法并不会立即激活某个等待线程,它只能撤销等待线程的中断状态,这样它们就能够在当前线程退出同步方法或同步代码块法后与其它线程展开竞争,以争取获得资源对象来执行
线程之间的协作
public class ThreadTogetherWorkTest {
Date time;
public static void main(String[] args) {
ThreadTogetherWorkTest threadTogetherWorkTest = new ThreadTogetherWorkTest();
TimeThread timeThread =threadTogetherWorkTest.new TimeThread();
DisplayTimeThread displayTimeThread = threadTogetherWorkTest.new DisplayTimeThread();
timeThread.start();
displayTimeThread.start();
}
class TimeThread extends Thread{
@Override
public void run() {
time = new Date();
}
}
class DisplayTimeThread extends Thread{
@Override
public void run() {
System.out.println(time);
}
}
}
结果
有可能为 (displayTimeThread线程先夺取到了CPU的执行权)
或者为(timeThread线程先夺取到了CPU的执行权)
- 为了一定可以打印出时间信息需要线程之间的协作
方式一
- 使用join
public class ThreadTogetherWorkTest {
Date time;
public static void main(String[] args) {
ThreadTogetherWorkTest threadTogetherWorkTest = new ThreadTogetherWorkTest();
TimeThread timeThread =threadTogetherWorkTest.new TimeThread();
DisplayTimeThread displayTimeThread = threadTogetherWorkTest.new DisplayTimeThread(timeThread);
timeThread.start();
displayTimeThread.start();
}
class TimeThread extends Thread{
@Override
public void run() {
time = new Date();
}
}
class DisplayTimeThread extends Thread{
TimeThread timeThread;
public DisplayTimeThread(TimeThread timeThread) {
this.timeThread = timeThread;
}
@Override
public void run() {
if(time==null) {
try {
timeThread.join();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println(time);
}
}
}
方式二
- 使用synchronized执行同步代码块,配合wait和notify方法
public class ThreadTogetherWorkTest {
Date time;
public static void main(String[] args) {
ThreadTogetherWorkTest threadTogetherWorkTest = new ThreadTogetherWorkTest();
TimeThread timeThread =threadTogetherWorkTest.new TimeThread();
DisplayTimeThread displayTimeThread = threadTogetherWorkTest.new DisplayTimeThread();
timeThread.start();
displayTimeThread.start();
}
class TimeThread extends Thread{
@Override
public void run() {
time = new Date();
synchronized (ThreadTogetherWorkTest.class) {
ThreadTogetherWorkTest.class.notify();
}
}
}
class DisplayTimeThread extends Thread{
@Override
public void run() {
if(time==null) {
synchronized (ThreadTogetherWorkTest.class) {
try {
ThreadTogetherWorkTest.class.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
System.out.println(time);
}
}
}
结果
注意:wait方法和sleep方法的区别
1. wait方法非静态但是是Object的方法;sleep是Thread的静态方法
2. wait方法要配合synchronized以及notify使用;sleep不需要
3. 执行wait方法时当前线程进入阻塞状态,并且释放对象锁;执行sleep方法当前线程虽然也会进入阻塞状态,但是并不释放对象锁