2

我有一个测试,我从std::istringstream. 我想获取std::istringstream测试期间未阅读的部分。该std::istringstream::str()函数返回整个字符串,而不仅仅是未读部分。

我如何获得字符串的这一部分?

4

2 回答 2

4

假设您没有在此行之前手动设置输入位置指示器:

std::string unread = stream.eof()  ?  "" : stream.str().substr( stream.tellg() );
于 2013-07-13T19:59:05.283 回答
0

我认为最简单的方法是将读取缓冲区推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();    
   }
}

检查此答案以获取类似问题

于 2013-07-13T20:01:41.353 回答