leetcode 1114.按序打印

题目描述

给你一个类:

public class Foo {
  public void first() { print("first"); }
  public void second() { print("second"); }
  public void third() { print("third"); }
}

三个不同的线程 A、B、C 将会共用一个 Foo 实例。
线程 A 将会调用 first() 方法
线程 B 将会调用 second() 方法
线程 C 将会调用 third() 方法
请设计修改程序,以确保 second() 方法在 first() 方法之后被执行,third() 方法在 second() 方法之后被执行。
提示:
尽管输入中的数字似乎暗示了顺序,但是我们并不保证线程在操作系统中的调度顺序。
你看到的输入格式主要是为了确保测试的全面性。

来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/print-in-order
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

解题

class Foo {

    private int current = 1;// 当前要打印的数字,初始为1
    private Object lock = new Object();// 定义一个用于同步线程的锁对象

    public Foo() {
        
    }

    public void first(Runnable printFirst) throws InterruptedException {
        synchronized (lock) { // 线程同步
            while(current != 1){// 条件不满足时等待
                lock.wait();
            }
            printFirst.run();
            current = 2;// 设置下一个要打印的数字
            lock.notifyAll();// 唤醒其他正在等待的线程
        }
        
        // printFirst.run() outputs "first". Do not change or remove this line.
    }

    public void second(Runnable printSecond) throws InterruptedException {
        synchronized (lock) {
            while(current != 2){
                lock.wait();
            }
            printSecond.run();
            current = 3;
            lock.notifyAll();
        }
        // printSecond.run() outputs "second". Do not change or remove this line.
    }

    public void third(Runnable printThird) throws InterruptedException {
        synchronized (lock) {
            while(current != 3){
                lock.wait();
            }
            printThird.run();
            current = 1;
            lock.notifyAll();
        }
        // printThird.run() outputs "third". Do not change or remove this line.
    }
}

你可能感兴趣的:(java,leetcode,java,多线程)