Basic String input

核能气质少年 提交于 2019-12-05 19:56:46

问题


I've just came across this bit of code that allows users to input strings in the command prompt. I'm aware of what they do and it's all great. But I have a question in regards to the cin and getline() functions.

string name ;
cout << "Please enter your full name: " ;
cin >> name ;
cout << "Welcome " << name << endl ;
cout << "Please enter your full name again please: " ;
getline(cin , name) ;
cout << "That's better, thanks " << name << endl ;
return 0 ;

Now when this is output, I get something along the lines of: (using john smith as the input)

Please enter your full name: john smith
Welcome John
Please enter your full name again: That's better thanks Smith

I understand why this happens, the getline is still reading from the input buffer and I know how to fix it. My question is, why is there no newline coming after the "Please enter your full name again: "? When I alter the code to:

string name ;
cout << "Please enter your full name: " ;
cin >> name ;
cout << "Welcome " << name << endl ;
cout << "Please enter your full name again please: " ;
cin.ignore( 256, '\n') ;
getline(cin , name) ;
cout << "That's better, thanks " << name << endl ;
return 0 ;

Suddenly I get a newline after you enter your full name again. It's not really a huge issue to be honest. But I wouldn't mind knowing what happened if anyone can help me. Thanks!


回答1:


You see, when you enter "John Smith" as a input first cin >> name will not read the entire line, but the the contents of the line until the first space.

So, after the first cin, name variable will contain John. There will still be Smith\n in the buffer, and you've solved this using:

cin.ignore( 256, '\n') ;

Note: As Konrad Rudolph suggested, you really shouldn't use 256 or any other magic numbers in your code. Rather use std::numeric_limits<std::streamsize>::max(). Here is what docs says about the first argument to istream::ignore:

Maximum number of characters to extract (and ignore). If this is exactly numeric_limits<streamsize>::max(), there is no limit: As many characters are extracted as needed until delim (or the end-of-file) is found.

cin.ignore( std::numeric_limits<std::streamsize>::max(), '\n') ;

My question is, why is there no newline coming after the "Please enter your full name again: "?

Because you're not outputing one to the stdout, and the user didn't get chance to press Enter. getline will read Smith\n from the buffer, and it will continue immediately. It will not echo any newline characters to your console - getline doesn't do that.

Suddenly I get a newline after you enter your full name again. It's not really a huge issue to be honest. But I wouldn't mind knowing what happened if anyone can help me. Thanks!

It is the newline that user enters with the Enter key, it is not coming from your program.

Edit Pressing Enter in terminal usually (depending on the terminal setup) does few separate things:

  1. Inserting \n into the input buffer
  2. Flushing the input buffer
  3. Shifting the input cursor one line down
  4. Moving the input cursor to the beginning of the line


来源:https://stackoverflow.com/questions/18803871/basic-string-input

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