当前位置: 技术问答>linux和unix
C++ 创建线程问题
来源: 互联网 发布时间:2016-09-21
本文导语: void My_Thread::start_thread() { pthread_create (&pth_id, NULL, thread_fun, (void *) NULL); /*创建进程t_a */ } void *My_Thread::thread_fun(void*) { cout
void My_Thread::start_thread()
{
pthread_create (&pth_id, NULL, thread_fun, (void *) NULL); /*创建进程t_a */
}
void *My_Thread::thread_fun(void*)
{
cout