Good input validation loop using cin - C++(使用 cin 的良好输入验证循环 - C++)
问题描述
我在上我的第二堂 OOP 课,我的第一堂课是用 C# 教授的,所以我是 C++ 的新手,目前我正在练习使用 cin 进行输入验证.所以这是我的问题:
I'm in my second OOP class, and my first class was taught in C#, so I'm new to C++ and currently I am practicing input validation using cin. So here's my question:
这个循环是我构建的一种很好的验证输入的方法吗?或者有更常见/可接受的方法吗?
Is this loop I constructed a pretty good way of validating input? Or is there a more common/accepted way of doing it?
谢谢!
代码:
int taxableIncome;
int error;
// input validation loop
do
{
error = 0;
cout << "Please enter in your taxable income: ";
cin >> taxableIncome;
if (cin.fail())
{
cout << "Please enter a valid integer" << endl;
error = 1;
cin.clear();
cin.ignore(80, '
');
}
}while(error == 1);
推荐答案
我不太喜欢为 iostream 打开异常.I/O 错误还不够特殊,因为错误通常很可能发生.我更喜欢只在不太频繁的错误情况下使用异常.
I'm not a huge fan of turning on exceptions for iostreams. I/O errors aren't exceptional enough, in that errors are often very likely. I prefer only to use exceptions for less frequent error conditions.
代码还不错,但跳过 80 个字符有点随意,如果你摆弄循环,错误变量不是必需的(如果你保留它应该是 bool
).您可以将 cin
的读取内容直接放入 if
中,这可能更像是 Perl 惯用语.
The code isn't bad, but skipping 80 characters is a bit arbitrary, and the error variable isn't necessary if you fiddle with the loop (and should be bool
if you keep it). You can put the read from cin
directly into an if
, which is perhaps more of a Perl idiom.
这是我的看法:
int taxableIncome;
for (;;) {
cout << "Please enter in your taxable income: ";
if (cin >> taxableIncome) {
break;
} else {
cout << "Please enter a valid integer" << endl;
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '
');
}
}
除了只跳过 80 个字符之外,这些只是小问题,更多的是喜欢的风格.
Apart from only skipping 80 characters, these are only minor quibbles, and are more a matter of preferred style.
这篇关于使用 cin 的良好输入验证循环 - C++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 cin 的良好输入验证循环 - C++
基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 设计字符串本地化的最佳方法 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01