这个问题可能与为什么将对象引用参数传递给线程函数无法编译有关?.
我遇到了类似的问题,但是,就我而言,仿函数是一个模板。
class A {
public:
// Non template version works as expected!!.
// void operator()(std::ostream& out){
// out << "hi\n";
// }
// template version doesn't.
template <class Ostream>
void operator()(Ostream& out){
out << "hi\n";
}
};
int main() {
A a;
thread t(a, ref(cout));
t.join();
}
海湾合作委员会 说:
error: no match for 'operator<<' in 'out << "hi\012"'
我怎么解决这个问题?