Why doesn't std::noskipws work, or what is it supposed to do?

断了今生、忘了曾经 提交于 2019-12-29 08:32:13

问题


First off my understanding is that

cin >> std::noskipws >> str;

should stick a whole line from cin like "i have spaces" into str. However this only puts "i" into str. This could be a false assumption in which case what does std::noskipws do?

I know there is a function std::getline and that does work but simply for educational purposes I decided I would try to get std::noskipws to work for me. I have tried in the past and it just never works so I normally move on and use std::getline.

What I think I have found so far is that std::noskipws technically just unsets std::skipws which internally to the basic_iostream just calls

ios_base::unsetf(std::ios::skipws); 

or

ios_base::unsetf(ios_base::skipws);

So I tried inheriting my own stream form basic_iostream and setting those flags (unsetting) them manually. Still no dice.

So, am I just totally off base or is there a way to make this work?


回答1:


std::noskipws tells the istream to not skip any leading white space when attempting to read a type. When there is no leading white space, then the flag has no impact.




回答2:


std::skipws works as follows: std::istream always keeps a current read position. If std::skipws is set, before operator>> is called the current read position is advanced to the first non-space character.

The behavior you're seeing (stop at the first space after 'i') is caused by operator>> for std::string (and std::wstring). That operator doesn't take the std::istream flags into account. An operator<< for another type may decide otherwise and continue even across spaces.



来源:https://stackoverflow.com/questions/5654660/why-doesnt-stdnoskipws-work-or-what-is-it-supposed-to-do

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!