7.4.21
#include
void *func() { printf("我是子进程/n"); sleep(1); }
int main() { pthread_t test; pthread_create(&test,NULL,func,NULL); pthread_join(test,NULL); sleep(1); printf("我是主进程/n"); return 0; }
7.4.21最先出现在Python成神之路。
共有 0 条评论