如何从std::istream
using中读取operator>>
?
我尝试了以下方法:
void foo(const std::istream& in) {
std::string tmp;
while(in >> tmp) {
std::cout << tmp;
}
}
但它给出了一个错误:
error: no match for 'operator>>' in 'in >> tmp'
如何从std::istream
using中读取operator>>
?
我尝试了以下方法:
void foo(const std::istream& in) {
std::string tmp;
while(in >> tmp) {
std::cout << tmp;
}
}
但它给出了一个错误:
error: no match for 'operator>>' in 'in >> tmp'