C++11/std::thread – 可作为线程函数的几种方式总结
1 使用普通函数作为线程函数
代码示例:
#include <iostream>
#include <thread>
void ThreadFunction()
{
std::cout<< "线程函数被启动" << std::endl;
}
int main()
{
std::thread thread(ThreadFunction);
thread.join();
getchar();
return 0;
}
2 使用类的成员函数作为线程函数
代码示例:
#include <iostream>
#include <thread>
class ThreadFunc
{
public:
void ThreadFunction()
{
std::cout << "线程函数被启动" << std::endl;
}
};
int main()
{
ThreadFunc m_ThreadFunc;
std::thread thread(&ThreadFunc::ThreadFunction,&m_ThreadFunc);
thread.join();
getchar();
return 0;
}
3 Lambda表达式/匿名函数作为线程函数
代码示例:
#include <iostream>
#include <thread>
int main()
{
std::thread thread{ [] {std::cout << "线程函数被启动" << std::endl; } };
thread.join();
getchar();
return 0;
}
未完待续。
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:C++11/std::thread – 可作为线程函数的几种方式总结
原文链接:https://www.stubbornhuang.com/775/
发布于:2020年04月01日 10:53:57
修改于:2023年06月26日 22:30:26
当前分类随机文章推荐
- C++ – 字节数组byte[]或者unsigned char[]与short的相互转换 阅读1703次,点赞0次
- C++STL容器 - std::map查找元素与判断键值是否存在方法总结 count,find,contains,equal_range,lower_bound,upper_bound 阅读1257次,点赞0次
- GCC/G++中编译优化选项-O -O0 -O1 -O2 -O3 -Os -Ofast -Og -Oz各自的区别和作用 阅读5700次,点赞4次
- C++ - queue存储动态指针时正确释放内存 阅读6182次,点赞2次
- C++11 - 父类与子类相互包含的时候该如何正确的使用智能指针,防止循环引用 阅读2801次,点赞0次
- GCC - 常用手动链接选项-lz、-lrt、-lm、-lc、-lpthread、-lcrypt、dl链接都是什么库? 阅读63次,点赞0次
- CMake - Windows系统设置CMake代理 阅读483次,点赞0次
- C++ - Web服务器框架Crow开发环境配置教程 阅读233次,点赞0次
- C++ - 左值和右值,右值引用与移动语义的概念与理解 阅读739次,点赞1次
- C++ - std::numeric_limits
简介与使用,用于获取指定数据类型的最大值与最小值 阅读990次,点赞0次
全站随机文章推荐
- 资源分享 - Virtual Clothing - Theory and Practice 英文PDF下载 阅读1475次,点赞0次
- 资源分享 - Practical Algorithms for 3D Computer Graphics, Second Edition 英文高清PDF下载 阅读1770次,点赞1次
- NCNN - Windows下使用Visual Studio编译NCNN小白教程 阅读746次,点赞0次
- Javascript - 判断当前元素是否含有子元素 阅读1009次,点赞0次
- CMake - Windows系统设置CMake代理 阅读483次,点赞0次
- Google Adsense - 从Google Adsense开通到第一个10美元我用了一年时间 阅读2360次,点赞2次
- WordPress - robots.txt 阅读2888次,点赞0次
- 深度学习 - 语音识别框架wenet的非流式与流式混合训练机制 阅读1848次,点赞0次
- C++11 - std::function简要介绍以及可包装函数的几种形式总结 阅读3460次,点赞0次
- 中国男篮 - 2023年男篮世界杯亚洲区预选赛中国男篮比赛录像 阅读1046次,点赞0次
评论
169