C++ 快速導覽 - 類別 預設的建構函數

建構函數 (constructor) 是一種特別的成員函數 (member function) ,與類別同名並且沒有回傳值 (return value) ,因為這是在類別 (class) 實際建立物件 (object) 時執行的函數。如果自己沒有定義建構函數,編譯器 (compiler) 會補上預設的建構函數。



預設的建構函數是沒有參數 (parameter) ,我們同樣舉個沒有參數的建構函數例子如下
#include <iostream>

class Demo {
public:
    int a;
    int b;
    
    // 無參數的建構函數
    Demo() {
        std::cout << "constructor called.." << std::endl;
        
        a = 22;
        b = 33;
    }
    
    int do_something() {
        return a + b;
    }
};

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

    return 0;
}

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


建構函數被呼叫時,會先印出英文訊息,然後設定兩個變數成員 (variable member)
// 無參數的建構函數
Demo() {
    std::cout << "constructor called.." << std::endl;
        
    a = 22;
    b = 33;
}


編譯執行結果如下



中英文術語對照
建構函數constructor
成員函數member function
回傳值return value
類別class
物件object
編譯器compiler
成員變數member variable


您可以繼續參考
類別


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


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

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

沒有留言: