我有一个代码块,我在一个 pthread 中(让我们调用这个线程a
),我希望生成一个新的 pthread(让我们调用这个线程b
)。线程b
需要传递一个双端队列,我有以下代码:
void* process_thread_b(void* arg)
{
deque<string> *ptr = (deque<string>*)arg;
cout << "Size -" << ptr->size() << endl;
deque<string>::iterator it;
for(it = ptr->begin(); it != ptr->end(); it++)
{
cout <<(*it) << endl;
}
}
上面的代码是线程b's
代码。它传递了一个双端队列并正确打印出大小。当我尝试打印出它的任何元素时,我得到:
terminate called after throwing an instance of 'std::bad_alloc'
what(): std::bad_alloc
Abort (core dumped)
当我产生 pthread 时,我使用下面的代码......
deque<string> myDeque;
// Add strings to deque here...
pthread_t dispatchCommands;
pthread_create(&dispatchCommands, NULL, &process_thread_b, (void*)&myDeque);
底部代码发生在 thread 中a
。为什么当我尝试打印出双端队列的一个元素时,我得到一个错误,但我可以得到它的大小?