如何讓線程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);}