gpt4 book ai didi

c++ - 如何返回 std::optional lambda?

转载 作者:行者123 更新时间:2023-12-05 08:21:40 24 4
gpt4 key购买 nike

如何声明一个返回 std::optional lambda 的函数?例如

<what_do_i_put_here?> foo(bool b) {
if(b) return std::nullopt;
return [](int) { ... };
}

最佳答案

使用三元运算符怎么样?它会自动推断出正确的 optional 类型

#include <optional>
auto foo(bool b) {
return b ? std::nullopt : std::optional{[](int){}};
}

关于c++ - 如何返回 std::optional lambda?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71392674/

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