class user
//無參,在此用於返回count,並且無引數也不會報錯
public user(string name)//為使用者名稱賦值,只輸姓名不會報錯
public user(string name,string password)//為使用者名稱和口令賦值,三種呼叫方式都可以
public string getname()
public void setname(string name)
public string getpassword()
public void setpassword(string password)
public void print()
public void count()
}public class t5
}
設計乙個類
1 設計乙個不能被繼承的類 1 將建構函式設為私有 此時子類不能訪問基類的建構函式,因此建立子類時就會報錯 無法訪問private成員 class base uninherit base uninherit const base uninherit rhs base uninherit operat...
設計乙個Logger類
需求 想要實現乙個logger可以以以下方式使用 logger log 2013 03 05.log log this is a logger test endl log value of temp temp endl log array index array index endl 實現有一點類似...
Java實現乙個Date類
日期類 根據需求列出功能列表 1.傳 年 月 日 構造日期類 2.在當前日期上增加多少天 3.在當前日期上減少多少天 4.可以返回字串 string 的方法 2019 5 30 5.加一些限制 年支援的範圍 1900,2100 6.如果給定兩個日期,計算兩個日期之間相差多少天 設計屬性 1.年 月 ...