C++学习(四八零)noskipws skipws
Posted hankern
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习(四八零)noskipws skipws相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <sstream>
int main()
char a, b, c;
std::istringstream iss(" 123");
iss >> std::skipws >> a >> b >> c; // 忽略掉前面的空白字符,PS: 默认std::skipws是置位的
std::cout << a << b << c << std::endl; // 123
iss.seekg(0);
iss >> std::noskipws >> a >> b >> c; // 不忽略空白字符,将其读取
std::cout << a << b << c << std::endl; // ..1
return 0;
以上是关于C++学习(四八零)noskipws skipws的主要内容,如果未能解决你的问题,请参考以下文章