std::constructible_from (自 C++20 起)
来自 cppreference.com
定义在头文件 <concepts> 中 |
||
template< class T, class... Args > concept constructible_from = |
(自 C++20 起) | |
constructible_from
概念指定类型 T
的变量可以使用给定的参数类型集 Args...
初始化。
[编辑] 参考文献
- C++23 标准 (ISO/IEC 14882:2024)
- 18.4.11 概念
constructible_from
[concept.constructible]
- 18.4.11 概念
- C++20 标准 (ISO/IEC 14882:2020)
- 18.4.11 概念
constructible_from
[concept.constructible]
- 18.4.11 概念
[编辑] 参见
(C++11)(C++11)(C++11) |
检查类型是否具有特定参数的构造函数 (类模板) |