有如下C语言程序。 void * th_f(void * arg) { printf("Ni:Hao"); pthread_join(2);} int main(void) { pthread_t tid; int at:

admin2022-06-21  36

问题 有如下C语言程序。
  void * th_f(void * arg)
  {
  printf("Ni:Hao");
  pthread_join(2);}
  int main(void)
  { pthread_t tid;
  int at:
  at==pthread_create(&tid,NULL,th_f,NULL);
  if(at==0)
  printf("I can not create thread\n");
  exit(NULL);}
  针对以上程序,pthread_join函数的意义是(          )。

选项 A、线程th_f运行后主动退出
B、线程th_f运行后等待一个特定的线程退出
C、线程th_f运行后主动释放CPU给其他线程
D、线程th_f运行后成为僵尸

答案B

解析 pthread_join函数的含义是等待一个特定的线程退出,题意中,main函数中创建一个新线程,新线程创建后,从入口函数tn_f开始执行,输出Ni Hao后,调用pthread_join等待线程ID为2的线程退出。因此,本题答案选择B选项。
转载请注明原文地址:https://kaotiyun.com/show/GJyZ777K
0

相关试题推荐
最新回复(0)