Catch cin exception
我想询问用户输入,我用 cin 得到这样的输入
1
2 3 4 5 6 7 8 9 |
void AskForGroundstate() {
cout <<"Please enter an groundstate potential value in Volt:" << endl; if (!(cin >> _VGroundstate)) { cin.clear(); cin.ignore(); cout <<"Groundstate potential not valid." << endl; AskForGroundstate(); } } |
_VGroundstate 是一个双精度值,所以如果用户输入一个没有数字的字符串,它应该再次要求他更好地输入。但问题是,当输入例如 “AA” 时,程序会执行 AskForGroundstate 两次,执行 “AAA” 三次等。我是否使用了 clear 错误?
问题是
1
2 |
cin.ignore(std::numeric_limits<std::streamsize>::max(), ‘/
‘); |
这可确保在最终用户再次提示输入之前删除所有无效输入。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268857.html