在C++多線程編程中,使用stdio
庫(如printf
和scanf
)可能會導致問題,因為它們不是線程安全的
以下是一個簡單的示例,展示了如何在C++多線程程序中使用iostream
庫:
#include<iostream>
#include<thread>
#include <mutex>
std::mutex mtx; // 用于同步輸出的互斥鎖
void print_block(int n, char c) {
std::unique_lock<std::mutex> lock(mtx); // 獲取互斥鎖
for (int i = 0; i < n; ++i) {
std::cout << c;
}
std::cout << '\n';
lock.unlock(); // 釋放互斥鎖
}
int main() {
std::thread th1(print_block, 50, '*');
std::thread th2(print_block, 50, '$');
th1.join();
th2.join();
return 0;
}
在這個示例中,我們創建了兩個線程,它們分別打印50個字符。通過使用互斥鎖mtx
,我們確保了在任何時候只有一個線程可以訪問std::cout
,從而避免了輸出混亂。
總之,在C++多線程編程中,建議使用iostream
庫而不是stdio
庫,因為iostream
庫提供了更好的類型安全和線程安全性。