C++ 快速導覽 - 類別 explicit 建構函數

由於編譯器 (compiler) 有可能自動在建構函數 (constructor) 的參數 (parameter) 進行隱性型態轉換 (implicit type conversion) ,也就是將參數轉換成類別型態,因而造成一些奇怪的結果,這時需要把建構函數宣告為 explicit ,使之禁止編譯器進行轉換工作,例如

#include <iostream>

class Demo {
public:
    int a;
    int b;
    
    // 宣告為 explicit 的建構函數
    explicit Demo(int pa, int pb) {
        std::cout << "constructor called.." << std::endl;
        
        a = pa;
        b = pb;
    }
    
    int do_something() {
        return a + b;
    }
};

int main(void) {
    Demo d(3, 5);
    std::cout << d.do_something() << std::endl;

    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:classdemo05.cpp
    功能:示範 C++ 程式
    作者:張凱慶
    時間:西元 2013 年 1 月 */


explicit 為關鍵字 (keyword) 之一,放在建構函數名稱之前
// 宣告為 explicit 的建構函數
explicit Demo(int pa, int pb) {
    std::cout << "constructor called.." << std::endl;
        
    a = pa;
    b = pb;
}


編譯執行結果如下



中英文術語對照
編譯器compiler
建構函數constructor
參數parameter
隱性型態轉換implicit type conversion
關鍵字keyword


您可以繼續參考
類別


相關目錄
回 C++ 快速導覽
回 C++ 教材
回首頁


參考資料
C++ reference
cplusplus.com
Cprogramming.com C++ Tutorial

C++ Primer, Fourth Edition, Stanley B. Lippman...

沒有留言: