std::lock_guard和std::unique_lock

时间:2021-01-23 15:03:51

std::unique_lock也可以提供自动加锁、解锁功能,比std::lock_guard更加灵活

https://www.cnblogs.com/xudong-bupt/p/9194394.html

#include <QCoreApplication>
#include <iostream> // std::cout
#include <thread> // std::thread
#include <mutex> // std::mutex, std::lock_guard
#include <stdexcept> // std::logic_error std::mutex mtx; void print_even (int x) {
if (x%==) std::cout << x << " is even\n";
else throw (std::logic_error("not even"));
} void print_thread_id (int id) {
try {
// using a local lock_guard to lock mtx guarantees unlocking on destruction / exception:
std::lock_guard<std::mutex> lck (mtx);
print_even(id);
}
catch (std::logic_error&) {
std::cout << "[exception caught]\n";
}
} int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv); std::thread threads[];
// spawn 10 threads:
for (int i=; i<; ++i)
threads[i] = std::thread(print_thread_id,i+); for (auto& th : threads) th.join(); return a.exec();
}