有如下C语言程序 void*th_f(void*arg) { printf(“Hello World”); pthread_exit(0); } int main(void) { pthrea

admin2021-03-19  18

问题 有如下C语言程序
    void*th_f(void*arg)
    {
    printf(“Hello World”);
    pthread_exit(0);
    }
    int main(void)
    {
    pthread_t tid;
    int st:
    st=pthread_create(&rid,NULL,th_f,NULL);
    if(st==0)
    pfintf(“Oops,I can not create thread\n”);
    exit(NULL);
    针对上述程序,下列叙述中哪一个是正确的?(    )

选项 A、程序运行中最多存在1个线程
B、程序运行中最多存在2个线程
C、程序运行中最多存在3个线程
D、程序运行中最多存在4个线程

答案B

解析 在引入线程的操作系统中每一个进程里有都一个主线程,由主线程再创建其他线程,所以题目程序中如创建线程成功则存在2个线程,否则还是只有一个主线程。故本题答案选择B选项。
转载请注明原文地址:https://kaotiyun.com/show/HoyZ777K
0

最新回复(0)