第4周課後實踐·閱讀程式-建構函式與解構函式(1)

不被看好的青春叫成長發表於2015-03-27
 * Copyright (c) 2015, 煙臺大學計算機學院  
 * All rights reserved.  
 * 檔名稱:test.cpp  
 * 作    者:劉暢   
 * 完成日期:2015年 3 月 27 日  
 * 版 本 號:v1.0  
 * 
 * 問題描述: 閱讀程式。
 * 輸入描述:NULL;
 * 程式輸出:按要求輸出。


程式碼如下:

#include <iostream>
using namespace std;
class A
{
    int a,b;
public:
    A()
    {
        a=b=0;
        cout<<"a="<<a<<","<<"b="<<b<<endl;
    }
    A(int aa,int bb): a(aa),b(bb)
    {
        cout<<"a="<<a<<","<<"b="<<b<<endl;
    }
    ~A()
    {
        cout<<"Destructor "<<a<<" "<<b<<endl;
    }

};
int main()
{
    A x,y(2,3);
    return 0;
}


執行結果:

 

學習心得:

初步理解了建構函式和解構函式的實現。

 

相關文章