在以下程序中:
int main(){
std::cout<<"enter numbers to be divide"<<std::endl;
int a,b,c;
while(true){
try{
if(!(std::cin>>a>>b)){
throw std::invalid_argument("please enter proper interger");
}
if(b==0){
throw std::runtime_error("please enter enter nonzero divisor");
}
c=a/b;
std::cout<<"quotient = "<<c<<std::endl;
}
catch(std::invalid_argument e){
std::cout<<e.what()<<"\ntry again?enter y/n";
char c;
std::cin>>c;
if(c=='n'||c=='N') break;
}
catch(std::runtime_error e){
std::cout<<e.what()<<"\ntry again?enter y/n";
char c;
std::cin>>c;
if(c=='n'||c=='N') break;
}
}
return 0;
}
我正在使用两种异常。程序在抛出“runtime_error”异常时工作正常但在遇到“invalid_argument”异常时进入无限循环。实际上catch-block中的“cin>>c
”语句存在问题,但无法弄清楚,为什么会发生这种情况。
答案 0 :(得分:3)
当std::cin>>a>>b
遇到非数字字符时,会发生两件相关的事情:
std::cin
的失败位。后者阻止std::cin
的所有进一步读取成功。这包括invalid_argument
catch块内的那些以及循环的后续迭代内的那些。
要解决此问题,您需要清除std::cin
的状态并使用违规字符。在KennyTM指出的以下答案中对此进行了很好的解释:C++ character to int。
答案 1 :(得分:0)
您可以使用exception masks,您可能会找到一种更好的方法来处理错误。