3

在下面的小程序中,我想用空格读取 inputString:

#include <string>
#include <sstream>
#include <iostream>


int main( int argc , char ** argv ) {
   std::string inputString(" ITEM ");
   std::istringstream inputStream( inputString );

   //Template:

   T value;

   inputStream.unsetf(std::ios::skipws);
   inputStream >> value;

   std::cout << "Value: [" << value << "]" << std::endl;
   std::cout << "StringPos: " << inputStream.tellg() << std::endl;
   std::cout << "State: " << inputStream.good() << std::endl;
}

这将产生输出:

Value: []
StringPos: -1
State: 0

如果我删除 unsetf() 调用,我会得到:

Value: [ITEM]
StringPos: 4
State: 1

即当空白被忽略时,正如预期的那样。所以 - 显然我对“不要跳过空格”设置做错了。有小费吗?

编辑:添加类似模板的“T值”后,示例不再编译;但重要的是

inputStream >> value;

作品。以下元代码也应该可以工作:

if is_string(T)
   value = inputString;   // String values are assigned directly
else 
   inputStream >> value;  // Other types.

乔金

4

1 回答 1

4

利用:

std::string line;
if(std::getline(inputStream, line)) {
    // line contains one line from the input stream
} else {
    // inputStream is empty, EOF or in error state
}
于 2013-10-09T11:34:27.173 回答