最佳答案
可能的复制品:
使用成员函数 启动线程
我有一个小班:
class Test
{
public:
void runMultiThread();
private:
int calculate(int from, int to);
}
如何在方法 runMultiThread()
的两个线程中用两组不同的参数(例如 calculate(0,10)
,calculate(11,20)
)运行方法 calculate
?
谢谢我忘记了我需要传递 this
,作为参数。