命名空间
变体
操作

std::expected<T,E>::operator->, std::expected<T,E>::operator*

来自 cppreference.com
< cpp‎ | utility‎ | expected
 
 
实用程序库
语言支持
类型支持 (基本类型,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)

 
 
主模板
constexpr const T* operator->() const noexcept;
(1) (自 C++23 起)
constexpr T* operator->() noexcept;
(2) (自 C++23 起)
constexpr const T& operator*() const& noexcept;
(3) (自 C++23 起)
constexpr T& operator*() & noexcept;
(4) (自 C++23 起)
constexpr const T&& operator*() const&& noexcept;
(5) (自 C++23 起)
constexpr T&& operator*() && noexcept;
(6) (自 C++23 起)
void 局部特化
constexpr void operator*() const noexcept;
(7) (自 C++23 起)

访问包含在 *this 中的预期值。

1,2) 返回指向预期值的指针。
3-6) 返回对预期值的引用。
7) 不返回任何内容。

如果 has_value()false,则行为未定义。

内容

[编辑] 返回值

3,4) val
5,6) std::move(val)

[编辑] 备注

这些运算符不检查可选值是否代表预期值!您可以通过使用 has_value() 或简单的 operator bool() 手动进行此操作。或者,如果需要检查访问,可以使用 value()value_or()

[编辑] 示例

#include <cassert>
#include <expected>
#include <iomanip>
#include <iostream>
#include <string>
 
int main()
{
    using namespace std::string_literals;
 
    std::expected<int, std::string> ex1 = 6;
    assert(*ex1 == 6);
 
    *ex1 = 9;
    assert(*ex1 == 9);
 
    // *ex1 = "error"s; // error, ex1 contains an expected value of type int
    ex1 = std::unexpected("error"s);
    // *ex1 = 13; // UB, ex1 contains an unexpected value
    assert(ex1.value_or(42) == 42);
 
    std::expected<std::string, bool> ex2 = "Moon"s;
    std::cout << "ex2: " << std::quoted(*ex2) << ", size: " << ex2->size() << '\n';
 
    // You can "take" the expected value by calling operator* on an std::expected rvalue
 
    auto taken = *std::move(ex2);
    std::cout << "taken " << std::quoted(taken) << "\n"
                 "ex2: " << std::quoted(*ex2) << ", size: " << ex2->size() << '\n';
}

可能的输出

ex2: "Moon", size: 4
taken "Moon"
ex2: "", size: 0

[编辑] 参见

返回预期值
(公共成员函数) [编辑]
如果存在则返回预期值,否则返回另一个值
(公共成员函数) [编辑]
检查对象是否包含预期值
(公共成员函数) [编辑]
返回意外值
(公共成员函数) [编辑]