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

2021-07-23 17:46:03 字數 787 閱讀 5822

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

hint

#include #include using namespace std;

class point

~point()

{ count++;

cout<<"deconstructor point x="<

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。和乙個靜態資料...