我有一个模板成员函数,我使用.template:
调用myObject.template memberFunction<someArguments...>(); //not variadic (but template of template)
我想用std :: thread来调用这个调用。所以我尝试了这个:
std::thread myThread(&myClass::memberFunction<someArguments...>, &myObject);
但是这不能编译。这似乎是一个解析问题,因为它'在括号和逗号之前'期望初始表达。
ps:我是法国人,也不熟悉c ++,所以我希望这是可以理解的。