C++的异常处理是一种用于处理运行时错误的机制
try {
// 可能引发异常的代码
}
try {
// 可能引发异常的代码
} catch (ExceptionType1 e) {
// 处理ExceptionType1类型的异常
} catch (ExceptionType2 e) {
// 处理ExceptionType2类型的异常
}
if (error_condition) {
throw ExceptionType(error_message);
}
#include <exception>
class MyException : public std::exception {
public:
const char* what() const noexcept override {
return "My custom exception occurred";
}
};
下面是一个简单的C++异常处理示例:
#include <iostream>
#include <stdexcept>
int main() {
try {
int denominator = 0;
if (denominator == 0) {
throw std::runtime_error("Division by zero");
}
int result = 10 / denominator;
std::cout << "Result: " << result << std::endl;
} catch (const std::runtime_error& e) {
std::cerr << "Error: " << e.what() << std::endl;
}
return 0;
}
在这个示例中,我们尝试执行一个除以零的操作,这会引发一个运行时错误。我们使用throw关键字抛出一个std::runtime_error异常,并在catch块中捕获并处理它。