首页 > 代码库 > 向线程中的函数传入参数的注意事项
向线程中的函数传入参数的注意事项
1. 当函数的形参类型为 string, 而传入的参数类型为 char[] 时, 需要在线程函数中转型, 如此可以避免空悬指针。如:
void f(int, std::string const&);void oops(int some_parm){ char buffer[100]; sprintf(buffer, "%i", some_parm); //std::thread(f, 3, buffer) //not do this std::thread(f, 3, string(buffer)) //instead of }
2. 当线程函数的形参为引用时, 不可以直接传入参数, 而应明确转为引用, 如:
void find_by_idx(int&);void opps_again(){ int idx = 6; //std::thread t(find_by_idx, idx); //damn no std::thread t(find_by_idx, std::ref(idx)); //damn good}
3. 成员函数也可以作为线程函数
如:
class X{public: void do_something(Type parm);};X my_x;std:thread(&X::do_something, my_x; the_parm);
向线程中的函数传入参数的注意事项
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。