题目描述
我们提供了一个类:
public class Foo {
public void first() { print(“first”); }
public void second() { print(“second”); }
public void third() { print(“third”); }
}
三个不同的线程将会共用一个 Foo 实例。
线程 A 将会调用 first() 方法
线程 B 将会调用 second() 方法
线程 C 将会调用 third() 方法
请设计修改程序,以确保 second() 方法在 first() 方法之后被执行,third() 方法在 second() 方法之后被执行。
样例
示例 1:
输入: [1,2,3]
输出: "firstsecondthird"
解释:
有三个线程会被异步启动。
输入 [1,2,3] 表示线程 A 将会调用 first() 方法,线程 B 将会调用 second() 方法,线程 C 将会调用 third() 方法。
正确的输出是 "firstsecondthird"。
示例 2:
输入: [1,3,2]
输出: "firstsecondthird"
解释:
输入 [1,3,2] 表示线程 A 将会调用 first() 方法,线程 B 将会调用 third() 方法,线程 C 将会调用 second() 方法。
正确的输出是 "firstsecondthird"。
提示:
尽管输入中的数字似乎暗示了顺序,但是我们并不保证线程在操作系统中的调度顺序。
你看到的输入格式主要是为了确保测试的全面性。
算法1
(条件变量)
互斥量定义:mutex a;
条件变量定义:condition_variable b;
锁定义:unique_lock< mutex > locker(互斥量);
等待条件变量:条件变量.wait(锁,等待的标志)
唤醒其他线程:条件变量.notify_all();
Foo类:
私有:
标志1,2;互斥量;条件变量
公有:
1.函数1:打印,设置标志1,唤醒所有线程
2.函数2:定义锁,等待标志1,打印,设置标志2,唤醒所有线程
3.函数3:定义锁,等待标志2,打印
C++ 代码
class Foo {
private:
mutex m_mutex;
condition_variable m_next;
bool m_flag1;
bool m_flag2;
public:
Foo() {
m_flag1 = false;
m_flag2 = false;
}
void first(function<void()> printFirst) {
// printFirst() outputs "first". Do not change or remove this line.
printFirst();
m_flag1 = true;
m_next.notify_all();
}
void second(function<void()> printSecond) {
unique_lock<mutex> locker(m_mutex); //锁住
m_next.wait(locker, [this] {return this->m_flag1; });
// printSecond() outputs "second". Do not change or remove this line.
printSecond();
m_flag2 = true;
m_next.notify_all();
}
void third(function<void()> printThird) {
unique_lock<mutex> locker(m_mutex);
m_next.wait(locker, [this] {return this->m_flag2; });
// printThird() outputs "third". Do not change or remove this line.
printThird();
}
};