gpt4 book ai didi

c++ - Xcode/LLVM catch 子句不匹配派生类型

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

在 gcc 4.2 中,这有效:

#include <stdexcept>
#include <iostream>

int main() {
try {
throw std::runtime_error("abc");
} catch (const std::exception& ex) {
std::cout << ex.what();
}
}

在 Xcode 4.3.2(带有 LLVM 3.1 的 iOS,-std=c++11)中,这失败了,terminate called throwing an exception,永远不会到达 NSLog(…)行:

#include <stdexcept>

int main() {
try {
throw std::runtime_error("abc");
} catch (const std::exception& ex) {
NSLog(@"%s", ex.what());
}

return UIApplicationMain(argc, argv, nil, nil);
}

但这行得通:

#include <stdexcept>

int main() {
try {
throw std::runtime_error("abc");
} catch (const std::runtime_error& ex) {
NSLog(@"%s", ex.what());
}

return UIApplicationMain(argc, argv, nil, nil);
}

什么给了?

最佳答案

gcc 是正确的:

15.3p3 A handler is a match for an exception object of type E if

  • ... or
  • the handler is of type cv T or cv T& and T is an unambiguous public base class of E, or
  • ...

这听起来像是一个 xcode 错误(而且是一个非常基本的错误!)

关于c++ - Xcode/LLVM catch 子句不匹配派生类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10602726/

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