摘要: 8. C++11新特性又哪些 自动类型推导auto,智能指指针(share_ptr,unique_ptr等),for循环简化,线程相关的(std::thread/std::mutex),空指针nullptr,lambda表达式,等等 9. share_ptr是线程安全的吗 share_ptr里包含引 阅读全文
posted @ 2024-09-17 19:23 robot2017 阅读(60) 评论(0) 推荐(0) 编辑
摘要: std::condition_variable 条件变量std::condition_variable有wait和notify接口用于线程间的同步。如下图所示,Thread 2阻塞在wait接口,Thread 1通过notify接口通知Thread 2继续执行。 具体参见示例代码: #include 阅读全文
posted @ 2024-09-17 10:23 robot2017 阅读(292) 评论(0) 推荐(2) 编辑