gpt4 book ai didi

C++ 代码无需在外部范围内声明 temporary

转载 作者:太空宇宙 更新时间:2023-11-04 14:47:23 27 4
gpt4 key购买 nike

有没有办法不使用临时“结果”来编写以下代码?

result = func();
if(result == -1)
return func2();
else
return result;

最佳答案

没有。

但我会简化为

result = func();
if(result == -1)
return func2();
return result;

您可以使用三元组,但我认为这不会让事情变得更清晰。

result = func();
return (result == -1) ? func2() : result;

关于C++ 代码无需在外部范围内声明 temporary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47276612/

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