私は文字列のスレッドから賢明な単語を読み込もうとしています。 1つのスレッドが1つの単語を読み込むことを意味し、すべての単語が終了すると、すべてのスレッドも平和的に終了する必要があります。この例では、文字列に11語、その文字列に4つのスレッドがあります。しかし、プログラムは実行中にハングアップしています。私は問題を特定できません。私も再帰を試みましたが、うまくいかず、ハングアップしました。C++でスレッドの順次実行を強制できませんか?デッドロック?
#include <iostream>
#include <mutex>
#include <sstream>
#include <thread>
#include <chrono>
#include <condition_variable>
using namespace std;
stringstream s("Japan US Canada UK France Germany China Russia Korea India Nepal");
int count = 0;
string word;
condition_variable cv;
mutex m;
int i = 0;
bool check_func(int i,int k)
{
return i == k;
}
void print(int k)
{
while(count < 11) // As there are 11 words
{
unique_lock<mutex> lk(m);
int z = k;
cv.wait(lk,[&]{return check_func(i,z);}); // Line 33
s >> word;
cout<<word<<" ";
i++;
cv.notify_all();
count++;
}
return;
}
int main()
{
thread threads[4];
for(int i = 0; i < 4; i++)
threads[i] = thread(print,i);
for(auto &t : threads)
t.join();
return 0;
}
あなたの完全な質問ですか? –
プログラムがハングアップしています。私は逐次実行を強制することができません。 – user3798283