problem description
通過本題目的練習可以掌握靜態資料成員和靜態成員函式的用法
要求設計乙個點類
point
,它具有兩個
double
型的資料成員x,
y。和乙個靜態資料成員
count
,用以記錄系統中建立點物件的數目。為該類設計建構函式和析構函式,在其中對
count
的值做修改,體現點的數目的動態變化。並為其新增乙個靜態成員函式用以輸出
count
的值;成員函式
showpoint()
用於輸出點的資訊。
並編寫主函式,輸出以下的內容。
input無
output
example input
example output
x=0,y=0the number of points is 3
deconstructor point x=5
deconstructor point x=3
deconstructor point x=0
hint
author
黃晶晶
#include #include#includeusing namespace std;
class point
point()
point(double a,double b)
~point()
};int point::cnt=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。和乙個靜態資料...