博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 线程协作
阅读量:6195 次
发布时间:2019-06-21

本文共 4334 字,大约阅读时间需要 14 分钟。

hot3.png

package thead;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
public class ThreadWaitAndNotifyTest {
    /**
     * @param args
     */
    public static void main(String[] args) {
        Car car=new Car();
        ExecutorService es=Executors.newCachedThreadPool();
        es.execute(new WaxOff(car));
        es.execute(new WaxOn(car));
        try {
            TimeUnit.SECONDS.sleep(1);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        es.shutdownNow();
    }
}
class Car {
    private boolean waxOn = false;
    public synchronized void waxed() {
        waxOn = true;
        notify();
    }
    public synchronized void buffed() {
        waxOn = false;
        notify();
    }
    public synchronized void waitForWaxing() throws InterruptedException {
        while (waxOn == false) {
            wait();
        }
    }
    public synchronized void waitForBuffing() throws InterruptedException {
        while (waxOn) {
            wait();
        }
    }
}
class WaxOn implements Runnable {
    private Car car;
    public WaxOn(Car car) {
        this.car = car;
    }
    @Override
    public void run() {
        try {
            while (!Thread.interrupted()) {
                System.out.println("wax on");
                //TimeUnit.MILLISECONDS.sleep(200);
                car.waxed();
                car.waitForBuffing();
            }
        } catch (InterruptedException e) {
            System.out.println("结束");
            //e.printStackTrace();
        }
        System.out.println("ending wax task");
    }
}
class WaxOff implements Runnable {
    private Car car;
    public WaxOff(Car car) {
        this.car = car;
    }
    @Override
    public void run() {
        try {
            while (!Thread.interrupted()) {
                car.waitForWaxing();
                System.out.println("wax off");
                //TimeUnit.MILLISECONDS.sleep(200);
                car.buffed();
            }
        } catch (InterruptedException e) {
            System.out.println("结束");
            //e.printStackTrace();
        }
        System.out.println("ending wax task");
    }

}

 

 

package thead;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
public class ThreadWaitAndNotifyTest1 {
    /**
     * @param args
     */
    public static void main(String[] args) {
        ExecutorService es = Executors.newCachedThreadPool();
        //Resource r = new Resource();
        resourceLock r1 = new resourceLock();
        es.execute(new Task2(r1));
        es.execute(new Task1(r1));
        try {
            TimeUnit.MILLISECONDS.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println(es.shutdownNow());
        // es.shutdown();
        System.out.println("任务圆满结束");
    }
}
class Task1 implements Runnable {
    private resourceLock r;
    public Task1(resourceLock r) {
        this.r = r;
    }
    @Override
    public void run() {
        while (!Thread.interrupted()) {
            r.baoJiaozi();// 执行包饺子
            // TimeUnit.MILLISECONDS.sleep(2);
            try {
                r.waitZhuJiaozi();// 等待煮饺子
            } catch (InterruptedException e) {
                System.out.println("包饺子任务被关闭了");
                break;
            }
        }
    }
}
class Task2 implements Runnable {
    private resourceLock r;
    public Task2(resourceLock r) {
        this.r = r;
    }
    @Override
    public void run() {
        try {
            while (!Thread.interrupted()) {
                r.zhuJiaozi();// 执行煮饺子
                // TimeUnit.MILLISECONDS.sleep(2);
                r.waitBaoJiaozi();// 等待包饺子
            }
        } catch (InterruptedException e) {
            System.out.println("煮饺子任务被关闭了");
        }
    }
}
class Resource {
    private boolean status = false;// false包饺子可以
    public synchronized void baoJiaozi() {
        status = true;
        System.out.println("包饺子");
        notifyAll();
    }
    public synchronized void zhuJiaozi() {
        status = false;
        System.out.println("煮饺子");
        notifyAll();
    }
    public synchronized void waitBaoJiaozi() throws InterruptedException {
        while (!status) {
            wait();
        }
    }
    public synchronized void waitZhuJiaozi() throws InterruptedException {
        while (status) {
            wait();
        }
    }
}
class resourceLock {
    private boolean status = false;// false包饺子可以
    private Lock lock = new ReentrantLock();
    private Condition condition = lock.newCondition();
    public void baoJiaozi() {
        lock.lock();
        try {
            status = true;
            System.out.println("包饺子");
            condition.signalAll();
        } finally {
            lock.unlock();
        }
    }
    public void zhuJiaozi() {
        lock.lock();
        try {
            status = false;
            System.out.println("煮饺子");
            condition.signalAll();
        } finally {
            lock.unlock();
        }
    }
    public void waitBaoJiaozi() throws InterruptedException {
        lock.lock();
        try {
            while (!status) {
                condition.await();
            }
        } finally {
            lock.unlock();
        }
    }
    public void waitZhuJiaozi() throws InterruptedException {
        lock.lock();
        try {
            while (status) {
                condition.await();
            }
        } finally {
            lock.unlock();
        }
    }
}

 

 

 

转载于:https://my.oschina.net/jiangtao1314/blog/40270

你可能感兴趣的文章
Ubuntu 无法mount解决办法
查看>>
CSS一些最佳实践
查看>>
8.Kubernetes Service(服务)
查看>>
iOS开发库的族“.NET研究”谱介绍
查看>>
图解DevExpress RichEditControl富文本的使用,附源码及官方API
查看>>
BNU 34986 Football on Table
查看>>
三级联动---城市地区选择
查看>>
剖析 Laravel 计划任务--避免重复
查看>>
公司框架遇到的问题
查看>>
详解 Discuz 的 PHP经典加密解密函数 authcode
查看>>
Mysql XX 天之内
查看>>
AE创建气泡式的提示框(VB.Net和C#源码)
查看>>
Oracle如何删除表中重复记录
查看>>
nginx 是如何处理访问请求的
查看>>
wget参数用法详解
查看>>
安卓自学应用程序生命周期法
查看>>
【COCOS2D-X(1.X 2.X)】Json(cpp版)以及添加自定义字体库教程
查看>>
使用curl命令查看访问url的时间
查看>>
whois
查看>>
python添加环境变量
查看>>