欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何讓線程A等待線程B完成后

方一強2年前14瀏覽0評論

如何讓線程A等待線程B完成后?

pthread_exit(NULL);}int main(){ //初始化一個互斥鎖 pthread_mutex_init(&mut,NULL); //創建A同學線程 pthread_create(&thread[0], NULL,studentA,NULL); //創建B同學線程 pthread_create(&thread[1], NULL,studentB,NULL); //等待A同學線程結束 pthread_join(thread[0],NULL); //等待B同學線程結束 pthread_join(thread[1],NULL);}

java中讓主線程等待,如何讓線程A等待線程B完成后