explicit
说明符
来自 cppreference.com
内容 |
[编辑] 语法
explicit
|
(1) | ||||||||
explicit ( 表达式 ) |
(2) | (自 C++20 起) | |||||||
表达式 | - | 类型为 bool 的上下文转换常量表达式 |
2) explicit 说明符可与常量表达式一起使用。仅当该常量表达式求值为 true 时,该函数才是显式的。
|
(自 C++20 起) |
显式说明符只能出现在其类定义中构造函数 或转换函数(自 C++11 起) 的声明的 decl-specifier-seq 中。
[编辑] 注释
构造函数 具有单个非默认参数(直到 C++11),如果在声明时没有使用函数说明符 explicit,则称为 转换构造函数。
构造函数(除 复制/移动 之外)和用户定义的转换函数都可以是函数模板;explicit 的含义不会改变。
紧随 explicit 的 struct S { explicit (S)(const S&); // error in C++20, OK in C++17 explicit (operator int)(); // error in C++20, OK in C++17 }; |
(自 C++20 起) |
功能测试宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_conditional_explicit |
201806L | (C++20) | 条件 explicit |
[编辑] 关键字
[编辑] 示例
运行此代码
struct A { A(int) {} // converting constructor A(int, int) {} // converting constructor (C++11) operator bool() const { return true; } }; struct B { explicit B(int) {} explicit B(int, int) {} explicit operator bool() const { return true; } }; int main() { A a1 = 1; // OK: copy-initialization selects A::A(int) A a2(2); // OK: direct-initialization selects A::A(int) A a3 {4, 5}; // OK: direct-list-initialization selects A::A(int, int) A a4 = {4, 5}; // OK: copy-list-initialization selects A::A(int, int) A a5 = (A)1; // OK: explicit cast performs static_cast if (a1) { } // OK: A::operator bool() bool na1 = a1; // OK: copy-initialization selects A::operator bool() bool na2 = static_cast<bool>(a1); // OK: static_cast performs direct-initialization // B b1 = 1; // error: copy-initialization does not consider B::B(int) B b2(2); // OK: direct-initialization selects B::B(int) B b3 {4, 5}; // OK: direct-list-initialization selects B::B(int, int) // B b4 = {4, 5}; // error: copy-list-initialization does not consider B::B(int, int) B b5 = (B)1; // OK: explicit cast performs static_cast if (b2) { } // OK: B::operator bool() // bool nb1 = b2; // error: copy-initialization does not consider B::operator bool() bool nb2 = static_cast<bool>(b2); // OK: static_cast performs direct-initialization [](...){}(a4, a5, na1, na2, b5, nb2); // suppresses “unused variable” warnings }