
在本教程中,我们将讨论一个程序来理解 C/C++ 中的线程函数。
线程函数允许用户同时实现并发函数,这些函数可以相互依赖用于执行或独立。
示例
#include #include #include void* func(void* arg){ //detaching the current thread pthread_detach(pthread_self()); printf("Inside the threadn"); pthread_exit(NULL);}void fun(){ pthread_t ptid; //creating a new thread pthread_create(&ptid, NULL, &func, NULL); printf("This line may be printed before thread terminatesn"); if(pthread_equal(ptid, pthread_self()) printf("Threads are equaln"); else printf("Threads are not equaln"); //waiting for the created thread to terminate pthread_join(ptid, NULL); printf("This line will be printed" " after thread endsn"); pthread_exit(NULL);}int main(){ fun(); return 0;}
输出
This line may be printed before thread terminatesThreads are not equalInside the threadThis line will be printed after thread ends
以上就是在C/C++中的线程函数的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1444075.html
微信扫一扫
支付宝扫一扫