istream 将“空白”视为分隔符。它使用语言环境来告诉它哪些字符是空格。反过来,语言环境包括对facet
字符类型进行分类的 ctype。这样的方面可能看起来像这样:
#include <locale>
#include <iostream>
#include <algorithm>
#include <iterator>
#include <vector>
#include <sstream>
class my_ctype : public
std::ctype<char>
{
mask my_table[table_size];
public:
my_ctype(size_t refs = 0)
: std::ctype<char>(&my_table[0], false, refs)
{
std::copy_n(classic_table(), table_size, my_table);
my_table['-'] = (mask)space;
my_table['\''] = (mask)space;
}
};
还有一个小测试程序来证明它有效:
int main() {
std::istringstream input("This is some input from McDonald's and Burger-King.");
std::locale x(std::locale::classic(), new my_ctype);
input.imbue(x);
std::copy(std::istream_iterator<std::string>(input),
std::istream_iterator<std::string>(),
std::ostream_iterator<std::string>(std::cout, "\n"));
return 0;
}
结果:
This
is
some
input
from
McDonald
s
and
Burger
King.
istream_iterator<string>
用于>>
从流中读取单个字符串,因此如果直接使用它们,应该会得到相同的结果。您需要包括的部分是创建语言环境并imbue
用于使流使用该语言环境。