構造"teacher"類,繼承「person」類。
1.增加「職稱」(string)屬性
2.具有和"student"類類似的過載構造方法
3.重寫"person"類的info()方法,增加「職稱」資訊
練習程式:
class person
person(string name,string location)
public string info()
}class teacher extends person
teacher(string n,string l,string capital)
public string info()
}class student extends person
student(string n,string l
,string school)
public string info()
}public class testteacher
class dog
}
3月20日總結
這周一直在做貪心的題,發現貪心的最大特點就是 讀完題目後往往沒有思路,無從下手 而當有思路後,並不會消耗太多時間。近期的題目,關聯資料比較多,往往會用到pair型別或結構體。pair型別 pair包含兩個資料值。與容器一樣,pair也是一種模板型別。但在建立pair物件時,必須提供兩個型別名。pai...
11月20日總結
提醒 選擇 設定標準 python numpy 的表示式已經非常直觀,互動也很方便,但對於生產 我們還是推薦優化過的 pandas 資料訪問方法 at iat loc和.iloc。詳見索引與選擇資料 opens new window 多層索引與高階索引 opens new window 文件。選擇單...
7月16日總結
在gridview控制項中將日期格式更改為年 月 日 yyyy mm dd 格式 首先,找到所需更改的列名的 dataformatstring 屬性,然後在此屬性中輸入 即可,具體操作如下 通過編輯列 找到所需更改的列 然後,找到 dataformatstring 屬性 輸入所要轉換的格式 執行結果...