命名空间
变体
操作

std::make_optional

来自 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)

 
 
定义在头文件 <optional>
template< class T >
constexpr std::optional<std::decay_t<T>> make_optional( T&& value );
(1) (自 C++17 起)
template< class T, class... Args >
constexpr std::optional<T> make_optional( Args&&... args );
(2) (自 C++17 起)
template< class T, class U, class... Args >

constexpr std::optional<T> make_optional( std::initializer_list<U> il,

                                          Args&&... args );
(3) (自 C++17 起)
1)value 创建一个可选对象。实际上调用 std::optional<std::decay_t<T>>(std::forward<T>(value)).
2) 使用 args... 在原地创建一个可选对象。等效于 return std::optional<T>(std::in_place, std::forward<Args>(args)...);.
此重载仅在 std::is_constructible_v<T, Args...>true 时参与重载解析。
3) 使用 ilargs... 在原地创建一个可选对象。等效于 return std::optional<T>(std::in_place, il, std::forward<Args>(args)...);.
此重载仅在 std::is_constructible_v<T, std::initializer_list<U>&, Args...>true 时参与重载解析。

内容

[编辑] 参数

value - 用于构造可选对象的的值
il, args - 要传递给 T 构造函数的参数

[编辑] 返回值

构造的可选对象。

[编辑] 异常

抛出由 T 的构造函数抛出的任何异常。

[编辑] 注释

对于重载 (2,3)T 不需要是可移动的,因为保证了复制省略。

[编辑] 示例

#include <iomanip>
#include <iostream>
#include <optional>
#include <string>
#include <vector>
 
int main()
{
    auto op1 = std::make_optional<std::vector<char>>({'a','b','c'});
    std::cout << "op1: ";
    for (char c : op1.value())
        std::cout << c << ',';
    auto op2 = std::make_optional<std::vector<int>>(5, 2);
    std::cout << "\nop2: ";
    for (int i : *op2)
        std::cout << i << ',';
    std::string str{"hello world"};
    auto op3 = std::make_optional<std::string>(std::move(str));
    std::cout << "\nop3: " << std::quoted(op3.value_or("empty value")) << '\n';
    std::cout << "str: " << std::quoted(str) << '\n';
}

可能的输出

op1: a,b,c,
op2: 2,2,2,2,2,
op3: "hello world"
str: ""

[编辑] 另请参阅

构造 optional 对象
(公共成员函数) [编辑]