命名空间
变体
操作

std::optional<T>::and_then

来自 cppreference.com
< cpp‎ | utility‎ | optional
 
 
工具库
语言支持
类型支持 (基本类型, RTTI)
库特性测试宏 (C++20)
动态内存管理
程序工具
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
template< class F >
constexpr auto and_then( F&& f ) &;
(1) (自 C++23 起)
template< class F >
constexpr auto and_then( F&& f ) const&;
(2) (自 C++23 起)
template< class F >
constexpr auto and_then( F&& f ) &&;
(3) (自 C++23 起)
template< class F >
constexpr auto and_then( F&& f ) const&&;
(4) (自 C++23 起)

如果 *this 包含一个值,则使用包含的值作为参数调用 f,并返回该调用结果;否则,返回一个空的 std::optional

返回类型(见下文)必须是 std::optional 的特化(不像 transform())。否则,程序格式不正确。

1) 等同于
if (*this)
    return std::invoke(std::forward<F>(f), **this);
else
    return std::remove_cvref_t<std::invoke_result_t<F, T&>>{};
2) 等同于
if (*this)
    return std::invoke(std::forward<F>(f), **this);
else
    return std::remove_cvref_t<std::invoke_result_t<F, const T&>>{};
3) 等同于
if (*this)
    return std::invoke(std::forward<F>(f), std::move(**this));
else
    return std::remove_cvref_t<std::invoke_result_t<F, T>>{};
4) 等同于
if (*this)
    return std::invoke(std::forward<F>(f), std::move(**this));
else
    return std::remove_cvref_t<std::invoke_result_t<F, const T>>{};

内容

[编辑] 参数

f - 一个合适的函数或 可调用对象,它返回一个 std::optional

[编辑] 返回值

f 的结果或一个空的 std::optional,如上所述。

[编辑] 说明

某些语言将此操作称为 flatmap

特性测试 Std 特性
__cpp_lib_optional 202110L (C++23) 单子操作 in std::optional

[编辑] 示例

#include <charconv>
#include <iomanip>
#include <iostream>
#include <optional>
#include <ranges>
#include <string>
#include <string_view>
#include <vector>
 
std::optional<int> to_int(std::string_view sv)
{
    int r{};
    auto [ptr, ec]{std::from_chars(sv.data(), sv.data() + sv.size(), r)};
    if (ec == std::errc())
        return r;
    else
        return std::nullopt;
}
 
int main()
{
    using namespace std::literals;
 
    const std::vector<std::optional<std::string>> v
    {
        "1234", "15 foo", "bar", "42", "5000000000", " 5", std::nullopt, "-43"
    };
 
    for (auto&& x : v | std::views::transform(
        [](auto&& o)
        {
            // debug print the content of input optional<string>
            std::cout << std::left << std::setw(13)
                      << std::quoted(o.value_or("nullopt")) << " -> ";
 
            return o
                // if optional is nullopt convert it to optional with "" string
                .or_else([]{ return std::optional{""s}; })
                // flatmap from strings to ints (making empty optionals where it fails)
                .and_then(to_int)
                // map int to int + 1
                .transform([](int n) { return n + 1; })
                // convert back to strings
                .transform([](int n) { return std::to_string(n); })
                // replace all empty optionals that were left by
                // and_then and ignored by transforms with "NaN"
                .value_or("NaN"s);
        }))
        std::cout << x << '\n';
}

输出

"1234"        -> 1235
"15 foo"      -> 16
"bar"         -> NaN
"42"          -> 43
"5000000000"  -> NaN
" 5"          -> NaN
"nullopt"     -> NaN
"-43"         -> -42

[编辑] 另请参见

如果可用,则返回包含的值,否则返回另一个值
(公有成员函数) [编辑]
(C++23)
如果存在,则返回一个包含已转换的包含值的 optional,否则返回一个空的 optional
(公有成员函数) [编辑]
(C++23)
如果包含一个值,则返回 optional 本身,否则返回给定函数的结果
(公有成员函数) [编辑]