How do I flush the cin buffer?

前端 未结 13 1060
無奈伤痛
無奈伤痛 2020-11-22 00:14

How do I clear the cin buffer in C++?

13条回答
  •  抹茶落季
    2020-11-22 00:17

    I would prefer the C++ size constraints over the C versions:

    // Ignore to the end of file
    cin.ignore(std::numeric_limits::max())
    
    // Ignore to the end of line
    cin.ignore(std::numeric_limits::max(), '\n')
    

提交回复
热议问题