student s1 = new student("張三丰","男",7);
student s2 = new student("楊過","男",9);
student s3 = new student("郭靖","女",8);
list list = new arraylist();
list.add(s1);
list.add(s2);
list.add(s3);
// 指定該集合資料類key為引用資料型別,新增的引數型別arraylist為student型別
map> map = new> hashmap();
map.put("三年級一班", (arraylist) list);
system.out.println("請輸入班級名稱");
scanner scan =new scanner(system.in);
string key=scan.next();
// 如果找到了該鍵,那就返回該鍵的對映值然後去遍歷值最後在操作值的屬性
Python學員資訊管理系統
coding utf 8 time 2018 6 8 16 33 author cai jinzhi file student manage system.py 定義乙個用於存放學員資訊的列表變數 stulist 定義乙個學生資訊的輸出函式 def showstu stulist 學生資訊的輸出函式...
Python學員資訊管理系統mysql
1.編寫stu表資訊操作類 內有方法 構造方法實現資料庫連線 析構方法關閉資料連線 findall 查詢方法 del id 刪除方法 insert data 新增方法 2.使用使用上面自定義stu表操作類,做出增,刪,查詢操作。coding utf 8 time 2018 6 8 16 38 aut...
python學員資訊管理 呼叫函式實現
通過定義函式來實現學員資訊管理 python小白一枚,不對的地方請批評指正 下面展示一些內聯 片。定義函式,顯示功能列表給使用者 info def print info print 請選擇功能 print 1.新增學員 print 2.刪除學員 print 3.修改學員 print 4.顯示所有學員...