std::in_place, std::in_place_type, std::in_place_index, std::in_place_t, std::in_place_type_t, std::in_place_index_t

来自cppreference.com
< cpp‎ | utility
 
 
工具库
通用工具
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)

初等字符串转换
(C++17)
(C++17)
栈踪
 
定义于头文件 <utility>
struct in_place_t {

    explicit in_place_t() = default;
};

inline constexpr in_place_t in_place{};
(C++17 起)
template <class T> struct in_place_type_t {

    explicit in_place_type_t() = default;
};
template <class T>

inline constexpr in_place_type_t<T> in_place_type{};
(C++17 起)
template <std::size_t I> struct in_place_index_t {

    explicit in_place_index_t() = default;
};
template <std::size_t I>

inline constexpr in_place_index_t<I> in_place_index{};
(C++17 起)

std::in_placestd::in_place_typestd::in_place_index 是消歧义标签,能传递给 std::optionalstd::variantstd::any 的构造函数,以指示应该原位构造对象,以及(对于后二者)要构造的对象的类型。

对应的类型/类型模板 std::in_place_tstd::in_place_type_tstd::in_place_index_t 能用于构造函数的参数列表中,以匹配有意的标签。

参阅

(C++17)
可能或可能不保有一个对象的包装器
(类模板)
(C++17)
类型安全的可辨识联合体
(类模板)
(C++17)
可保有任何可复制构造 (CopyConstructible) 类型的实例的对象。
(类)