std::constructible_from (C++20 起)

来自cppreference.com
< cpp‎ | concepts
在标头 <concepts> 定义
template< class T, class... Args >

concept constructible_from =

    std::destructible<T> && std::is_constructible_v<T, Args...>;
(C++20 起)

constructible_from 概念指定 T 类型的变量能以给定的实参类型包 Args... 初始化。

引用

  • C++23 标准(ISO/IEC 14882:2024):
  • 18.4.11 Concept constructible_from [concept.constructible]
  • C++20 标准(ISO/IEC 14882:2020):
  • 18.4.11 Concept constructible_from [concept.constructible]

参阅

检查类型是否带有针对特定实参的构造函数
(类模板)