定義乙個data類,至少包含1個int型別的資料成員、1個double型別的資料成員,定義其建構函式和析構函式,使得程式執行時,能產生樣例所示的結果。
輸入2行,第1行是1個int型別的資料,第2行是1個double型別的資料。
見樣例
1203.14
a default object is created.an integer object 120 is created.
a double object 3.14 is created.
the double object 3.14 is erased.
the integer object 120 is erased.
the default object is erased.
int main()
#include
using namespace std;
class
data
data
(int a):x
(a),c(
1)data
(double b):y
(b),c(
2)~data()
};int main()
python類的可變型別成員和不可變型別成員的區別
usr bin python coding utf 8 class foo1 object x 1 class foo2 object x f1 foo1 f2 foo2 f1.x 3 print f1.x print foo1.x f2.x 101 3 print f2.x print foo2....
2192 型別可變的類
定義乙個data類,至少包含1個int型別的資料成員 1個double型別的資料成員,定義其建構函式和析構函式,使得程式執行時,能產生樣例所示的結果。輸入2行,第1行是1個int型別的資料,第2行是1個double型別的資料。見樣例。120 3.14 a default object is crea...
Problem A 類的初體驗
home web board problemset standing status statistics time limit 1 sec memory limit 128 mb submit 723 solved 661 submit status web board 定義乙個類data,只有乙個...