gpt4 book ai didi

c++ - 无法捕获 std::runtime_error

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:21:39 26 4
gpt4 key购买 nike

也许我今天没有喝足够的咖啡。下面的程序应该捕获 std::runtime_error 并打印“我捕获了 runtime_error”,对吗?

事实并非如此。该程序没有捕获 std::runtime_error 而是打印“为什么我无法捕获 runtime_error”?

我在这里做错了什么?为什么我没有捕捉到 std::runtime_error?

这是 Clang(请参阅代码下方的环境信息)。

#include <iostream>
#include <exception>

int main(int argc, const char * argv[])
{
try
{
throw new std::runtime_error( "a runtime_error was thrown" );
}
catch ( const std::runtime_error& e )
{
std::cout << "i caught the runtime_error" << std::endl;
}
catch ( ... )
{
std::cout << "why was i unable to catch the runtime_error?" << std::endl;
}
return 0;
}

OS X 10.9.5 上的 Xcode 5.1.1

comp:~ usrn$ clang --version
Apple LLVM version 5.1 (clang-503.0.38) (based on LLVM 3.4svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix
comp:~ usern$

最佳答案

你正在抛出 new std::runtime_error( "a runtime_error was thrown");,

所以你抛出一个 std::runtime_error*

你可能想做 throw std::runtime_error("..."),即按值抛出。

关于c++ - 无法捕获 std::runtime_error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32125191/

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