boostthread类应用以及资源耗尽异常
1测试例子
创新互联建站专注于陇川企业网站建设,响应式网站开发,商城系统网站开发。陇川网站建设公司,为陇川等地区提供建站服务。全流程按需求定制制作,专业设计,全程项目跟踪,创新互联建站专业和态度为您提供的服务
#include
#include
#include
void ThreadFunc()
{
std::cout << "Welcome to thread function" << std::endl;
}
int main(int argc, char* argv[])
{
boost::thread instance(&ThreadFunc);
instance.join();
return 0;
}
2 携带参数例子
#include
#include
#include
void threadFunc(const char* pszContext)
{
std::cout << pszContext << std::endl;
}
int main(int argc, char* argv[])
{
char* pszContext = "fengyuzaitu@126.com";
boost::thread thread1(boost::bind(&threadFunc, pszContext));
thread1.join();
return 0;
}
3 类的非静态函数作为线程函数
生产环境中经常需要访问类的私有成员,如果类的静态函数作为线程函数,通过参数的方式传递极其不方便
#include
#include
#include
#include
class CThreadClass
{
public:
CThreadClass()
{
memset(m_szContext, 0x00, 1024);
}
void ThreadFunc()
{
std::cout << m_szContext << std::endl;
}
void StartThread()
{
strcpy_s(m_szContext, "Welcome to thread func\n");
boost::function0
boost::thread thrd(f);
thrd.join();
}
private:
char m_szContext[1024];
};
int main(int argc, char* argv[])
{
CThreadClass instance;
instance.StartThread();
return 0;
}
4 创建线程过多,导致boost库异常抛出,耗尽资源
查看boost::system::system_error = {m_error_code={m_val=11 m_cat=0x02d848f4 {CMMS-test.exe!boost::system::`anonymous-namespace'::generic_error_category generic_category_const} {...} } ...}
boost::throw_exception
boost::thread::start_thread() 行 180 C++
目前通过代码测试生成1274个线程,实际上这是需要根据线程函数的实质内容决定的,在编码中必须指定上限,否则会引起程序异常崩溃
分享标题:boostthread类应用以及资源耗尽异常
文章源于:http://scyanting.com/article/jeojcd.html