gpt4 book ai didi

c++ - 使用 try/catch 处理字符串流错误

转载 作者:行者123 更新时间:2023-11-28 04:35:48 26 4
gpt4 key购买 nike

如何在不使用 if/else(仅使用 try/catch)的情况下处理以下异常:-

string S;
cin >> S;
stringstream ss(S);
int n;
try {
ss>>n;
if(ss.fail()) throw (exception())
else cout<<n;
}
catch (const exception& e) { cout << "Bad String"<<endl;}

最佳答案

流有一个exceptions 成员函数来告诉它什么条件应该抛出异常。在这种情况下,您只需告诉它在 fail 时抛出异常:

#include <string>
#include <iostream>
#include <sstream>
using namespace std;

int main()
{

string S;
cin >> S;
stringstream ss(S);
ss.exceptions(ios::failbit);

int n;
try {
ss>>n;
cout<<n;
}
catch (const exception& e) {
cout << "Bad String\n";
}
}

事实证明,这并没有最初看起来那么有用,但如果这是您想要的,这就是您的做法。

哦,停止使用 using namespace std;。它充满了问题。

关于c++ - 使用 try/catch 处理字符串流错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51489364/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com