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

◇◆丶佛笑我妖孽 提交于 2019-11-30 01:48:54

This line ignores the rest of the current line, up to '\n' or EOF - whichever comes first:

  • '\n' sets the delimiter, i.e. the character after which cin stops ignoring
  • numeric_limits<streamsize>::max() sets the maximum number of characters to ignore. Since this is the upper limit on the size of a stream, you are effectively telling cin that there is no limit to the number of characters to ignore.

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

Here, the \n acts as a delimiter.... that is the point upto which the code has to be ignored(as "\n" in this perticular case). And max() defines that there is no limit for how much can be ignored, the spaces, tabs have to be ignored untill the line ends.

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