摘要:
void func(int i, double d, const string& s) { cout << i << ", " << d << ", " << s << endl; } int main() { thread t(func, 1, 12.50, "sample"); t.join() 阅读全文
posted @ 2020-07-08 18:14
DoubleLi
阅读(2997)
评论(0)
推荐(0)