gpt4 book ai didi

c++ - C++ 中的抛出和三元运算符

转载 作者:可可西里 更新时间:2023-11-01 18:08:24 26 4
gpt4 key购买 nike

以下代码可以使用 G++ 4.6.1 编译,但不能使用 Visual Studio 2008

return (m_something == 0) ? 
throw std::logic_error("Something wrong happened") : m_something;

事实是 Visual Studio 编译器执行内部崩溃。

我想知道这是否是标准的 C++,以及为什么它不能用 Visual Studio 编译,但可以用 G++ 编译?

最佳答案

它是标准的 C++。条件表达式中的 then/else 表达式中的任一个(或两者)都允许是抛出表达式 (C++98 5.16/2)。

如果 Visual Studio 在编译时崩溃......那似乎很不幸!

关于c++ - C++ 中的抛出和三元运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7957696/

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