我有一个测试,我从std::istringstream
. 我想获取std::istringstream
测试期间未阅读的部分。该std::istringstream::str()
函数返回整个字符串,而不仅仅是未读部分。
我如何获得字符串的这一部分?
假设您没有在此行之前手动设置输入位置指示器:
std::string unread = stream.eof() ? "" : stream.str().substr( stream.tellg() );
我认为最简单的方法是将读取缓冲区推istringstream
送到字符串流:
void test(std::istringstream& iss)
{
/* Test code */
}
int main()
{
std::istringstream iss;
std::stringstream not_readed_buffer;
std::string not_readed;
test( iss );
if( iss )
{
not_readed_buffer << iss.rdbuf();
not_readed = not_readed_buffer.str();
}
}