用法:
auto hand=async(launch::async,&A::do_rand_stf,this,i,j);
launch::async 表示立即执行
&A::do_rand_stf 表示成员函数
i,j 为函数参数
如果不是成员函数(member function),则不需要this 变量
用法:
auto hand=async(launch::async,&A::do_rand_stf,this,i,j);
launch::async 表示立即执行
&A::do_rand_stf 表示成员函数
i,j 为函数参数
如果不是成员函数(member function),则不需要this 变量