首先,return 语句和 pthread_exit() 函数的含义不同: return 的含义是返回,它不仅可以用于线程执行的函数,普通函数也可以使用; pthread_exit() 函数的含义是线程退出,它专门用于结束某个线程的执行。 在主线程(main() 函数)中,return 和 pthread_exit() 函数的区别最明显。举个例子: 1#include <stdio.h>2#...
main函数的return,相当于是在线程中调用了系统函数exit(任何线程半路调用exit,都会导致进程终止),表示直接终止了整个进程,那么操作系统会把当前进程所有的资源,包括内存、io、线程、管道、fd等全部终止使用并且回收,相当于进程啥都没了 而pthread_exit,仅仅只是结束当前线程,进程地址空间还在,所有的资源也都在,其他线程...
pthread_exit 表示线程结束,退出当前线程。 在main函数结尾时使用return 0 和使用pthread_exit有什么区别呢 1.使用return 0; 1#include"windows.h"2#include <bits/stdc++.h>3usingnamespacestd;45#defineMAX_NUM 467typedefstructthread_info8{9intid;10stringname;11} thread_info;1213//void*只是表示可以传入...
1.当linux和Windows中,主线程以return 0结束时,程序会在主线程运行完毕后结束. 2.当linux中,主线程以pthread_exit(NULL)作为返回值,则主线程会等待子线程. #include<stdio.h>#include<unistd.h>#include<pthread.h>void* task(void*param) { sleep(50); printf("hello\n"); pthread_exit(NULL); }intma...
pthread_exit(NULL);//return 0;} 上面的代码在linux下执行,运行结果为: 创建主线程 hello 运行现象: 没有指定去等待子线程,主线程也会等待子线程执行完毕后,才会最后结束程序. 但当把 main函数中改为如下这种:发现打印结果也只是: 创建主线程 //pthread_exit(NULL);return0; ...