C 新手上路第四天 靜態Point

2021-07-25 12:14:12 字數 956 閱讀 9031

具有靜態資料成員的point類

#include

"stdafx.h"

#include

using

namespace

std;

class

point

~point()

//析構函式消除物件count自動減一

intgetx()

intgety()

void

showcount()

private:

intx, y;

static

intcount;

//定義靜態的成員 };

//建構函式的實現

point

::point(

intxx

, intyy)

intpoint

::count = 0;

//靜態成員變數的定義和初始化,使用類名呼叫

intmain()

具有靜態函式成員的

point類

#include

"stdafx.h"

#include

using

namespace

std;

class

point

point(

point&p

) ~point() ;

intgetx()

intgety()

static

void

showcount()

private:

intx, y;

static

intcount;

//靜態資料成員 }

; int

point

::count = 0;

//靜態資料成員的初始化

intmain()

C 新手上路第一天

第一天寫了一些入門的 簡單的用了建構函式和複製建構函式 clock 類 include stdafx.h include cout cin 都是這個檔案裡的還要加入命名空間 using namespace std class clock 建構函式的實現 clock clock intnewh int...

C 新手上路第六天,指標

include stdafx.h include using namespace std intmain 指標陣列 include stdafx.h include using namespace std intmain 定義陣列,矩陣的第一行 intline2 定義陣列,矩陣的第二行 intlin...

C 學習第四天

匿名類 原理 編譯器根據初始化值推斷變數的真正型別.var只能在初始化變數時使用 編譯器要根據初始值固化其正真型別 例如var myint 100 編譯器會推斷出myint為int型別。而var myint myint 0 錯誤。因為編譯器無法知道myint的具體型別,也就無法後續對其進行各種操作了...