zoukankan      html  css  js  c++  java
  • 等待唤醒机制

    package com.demo;

    public class Test {
    public static void main(String[] args) {
    Resource resource = new Resource();
    Input input = new Input(resource);
    Output output = new Output(resource);
    Thread t1 = new Thread(input);
    Thread t2 = new Thread(output);
    t1.start();
    t2.start();
    }
    }

    class Resource {
    private String name;
    private String sex;
    private boolean flag;

    public synchronized void set(String name, String sex) throws InterruptedException {
    if(this.flag)
    this.wait();
    this.name = name;
    this.sex = sex;
    this.flag = true;
    this.notify();
    }

    public synchronized void print() throws InterruptedException {
    if(!flag)
    this.wait();
    System.out.println(name + " " + sex);
    this.flag = false;
    this.notify();
    }
    }

    class Input implements Runnable{
    private Resource r;

    public Input(Resource r) {
    this.r = r;
    }

    @Override
    public void run() {
    int i = 0;
    while(true) {
    try {
    if(i % 2 == 0) {
    r.set("Tom", "男");
    } else {
    r.set("Mary", "女");
    }
    i++;
    } catch (InterruptedException e) {
    e.printStackTrace();
    }
    }
    }
    }

    class Output implements Runnable{
    Resource r;
    public Output(Resource r) {
    this.r = r;
    }
    @Override
    public void run() {
    while(true) {
    try {
    r.print();
    } catch (InterruptedException e) {
    e.printStackTrace();
    }
    }
    }
    }

  • 相关阅读:
    熟悉常用的Linux操作
    Hadoop综合大作业
    理解MapReduce
    熟悉常用的Hbase操作
    第三章 熟悉常用的HDFS操作
    爬虫大作业
    数据结构化与保存
    爬取校园新闻首页的新闻
    网络爬虫基础练习
    综合练习:词频统计
  • 原文地址:https://www.cnblogs.com/bean/p/7685268.html
Copyright © 2011-2022 走看看