3 6 靜態資料成員與靜態成員函式

2021-08-09 21:44:34 字數 890 閱讀 6049

time limit: 1000ms

memory limit: 65536kb

submit

statistic

problem description

通過本題目的練習可以掌握靜態資料成員和靜態成員函式的用法

要求設計乙個點類

point

,它具有兩個

double

型的資料成員x,

y。和乙個靜態資料成員

count 

,用以記錄系統中建立點物件的數目。為該類設計建構函式和析構函式,在其中對

count

的值做修改,體現點的數目的動態變化。並為其新增乙個靜態成員函式用以輸出

count

的值;成員函式

showpoint()

用於輸出點的資訊。

並編寫主函式,輸出以下的內容。

input無

output

example input

example output

x=0,y=0

the number of points is 3

deconstructor point x=5

deconstructor point x=3

deconstructor point x=0

#include

using namespace std;

class point

void showpoint()   //輸出點的位置

static void showcount()  //輸出點的數量

~point()   //析構函式

};int point::count = 0;

int main()

3 6 靜態資料成員與靜態成員函式

time limit 1000ms memory limit 65536k 通過本題目的練習可以掌握靜態資料成員和靜態成員函式的用法 要求設計乙個點類 point 它具有兩個 double 型的資料成員x,y。和乙個靜態資料成員 count 用以記錄系統中建立點物件的數目。為該類設計建構函式和析構函...

3 6 靜態資料成員與靜態成員函式

time limit 1000ms memory limit 65536kb submit statistic problem description 通過本題目的練習可以掌握靜態資料成員和靜態成員函式的用法 要求設計乙個點類point 它具有兩個double 型的資料成員x y。和乙個靜態資料成員...

3 6 靜態資料成員與靜態成員函式

time limit 1000ms memory limit 65536kb submit statistic problem description 通過本題目的練習可以掌握靜態資料成員和靜態成員函式的用法 要求設計乙個點類 point 它具有兩個 double 型的資料成員x,y。和乙個靜態資料...