標籤:隱式 選擇 operator bool c++筆記 初始化 turn 轉換 return
用於抑制建構函式的自動隱式轉換。
struct A{ A(int) { } // 轉換建構函式 A(int, int) { } // 轉換建構函式 (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:複製初始化選擇 A::A(int) A a2(2); // OK:直接初始化選擇 A::A(int) A a3 {4, 5}; // OK:直接列表初始化選擇 A::A(int, int) A a4 = {4, 5}; // OK:複製列表初始化選擇 A::A(int, int) A a5 = (A)1; // OK:顯式轉型進行 static_cast if (a1) ; // OK:A::operator bool() bool na1 = a1; // OK:複製初始化選擇 A::operator bool() bool na2 = static_cast<bool>(a1); // OK:static_cast 進行直接初始化 // B b1 = 1; // 錯誤:複製初始化不考慮 B::B(int) B b2(2); // OK:直接初始化選擇 B::B(int) B b3 {4, 5}; // OK:直接列表初始化選擇 B::B(int, int)// B b4 = {4, 5}; // 錯誤:複製列表初始化不考慮 B::B(int,int) B b5 = (B)1; // OK:顯式轉型進行 static_cast if (b2) ; // OK:B::operator bool()// bool nb1 = b2; // 錯誤:複製初始化不考慮 B::operator bool() bool nb2 = static_cast<bool>(b2); // OK:static_cast 進行直接初始化}
【C++筆記】explicit 指定符