多线程与函数重载问题
请问一下c++写多线程是不是不支持重载函数或者函数模板吗,或是需要调用其他什么方法实现吗?
下面是我的测试程序
#include<iostream>
#include<thread>
#include <string>
using namespace std;
void show(const char str[], const int id)
{
cout << "线程 " << id + 1 << " :" << str << endl;
}
void show( string& str, const int id)
{
cout << "线程 " << id + 1 << " :" << str << endl;
}
//template<class T, class U>
//void show(T str, U id)
//{
// cout << "线程 " << id + 1 << " :" << str << endl;
//}
int main()
{
//show("1.hello cplusplus!", 0);
thread t1(show, "1.hello cplusplus!", 0);
t1.join();
string s = "2.cplusplus!";
thread t2(show, std::ref(s) , 1);
t2.join();
thread t3(show, "3.hello!", 2);
t3.join();
return 0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你遇到的问题是模板参数推导失败,这是直接由函数重载引起的。换句话说,当
show
是函数重载时,便不能直接以show
作为std::thread
的构造函数的实际参数。可以用lambda expression
或者用
static_cast
来解决这个问题。
PS: lambda expression的第二段代码样例里转发的不是thread构造函数的形式参数,而是一个副本。