7.4.21

#include #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成神之路

版权声明:
作者:Zad
链接:https://www.techfm.club/p/9587.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>