c++ boost库里的多线程编程如何传递多参数?
这个是我在网上找的例子,是可以通过编译的但是我如果想这样呢?classHelloWorld{public:voidhello(conststd::string&str,c...
这个是我在网上找的例子,是可以通过编译的
但是我如果想这样呢?
class HelloWorld
{
public:
void hello(const std::string& str,const int a)
{
std::cout<<str<<std::endl;
a++;
}
int main()
{
HelloWorld obj;
boost::thread thrd(boost::bind(&HelloWorld::hello, &obj, "Hello World, I'm a thread!",5));
thrd.join();
system("pause");
return 0;
}
};
多了一个参数编译器是无法通过编译的
而且由于项目的复杂性,我不想把这些多参数封装成承载类变成一个参数
本人刚接触C++,经验尚浅
请大牛们支招
抱歉,我这里的a++是不应该设置成const的
但是这个不是问题的关键所在.
把const去掉也会有问题 展开
但是我如果想这样呢?
class HelloWorld
{
public:
void hello(const std::string& str,const int a)
{
std::cout<<str<<std::endl;
a++;
}
int main()
{
HelloWorld obj;
boost::thread thrd(boost::bind(&HelloWorld::hello, &obj, "Hello World, I'm a thread!",5));
thrd.join();
system("pause");
return 0;
}
};
多了一个参数编译器是无法通过编译的
而且由于项目的复杂性,我不想把这些多参数封装成承载类变成一个参数
本人刚接触C++,经验尚浅
请大牛们支招
抱歉,我这里的a++是不应该设置成const的
但是这个不是问题的关键所在.
把const去掉也会有问题 展开
展开全部
把编译错误或者运行情况描述出来。
我这边可以正常运行
#include <iostream>
#include <string>
#include <boost/thread.hpp>
class HelloWorld
{
public:
void hello(const std::string& str, int a)
{
std::cout<<str<<std::endl;
a++;
std::cout<<a;
}
};
int main()
{
HelloWorld obj;
boost::thread thrd(boost::bind(&HelloWorld::hello, &obj, "Hello World, I'm a thread!",5));
thrd.join();
system("pause");
return 0;
}
展开全部
class没有分号,
就这样
class HelloWorld
{public:
void hello(const std::string& str, int a)
{
std::cout<<str<<std::endl;
a++;
}
};
using namespace boost;
int main()
{
HelloWorld obj;
boost::thread thrd(boost::bind(&HelloWorld::hello, &obj, "Hello World, I'm a thread!",5));
thrd.join();
std::system("pause");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询