多型 學生資訊

2021-10-12 10:14:41 字數 562 閱讀 2201

定義乙個學生類(student),該類具有私有的成員屬性:姓名(string)、年齡(int),相應的設定、取值方法,以及tostring方法。

在測試類中,建立乙個student的物件例項,通過控制台給student的物件賦值,並輸出該物件的全部資訊。

測試類要能夠處理給年齡字段賦值時資料型別不匹配的異常(inputmismatchexception),對異常的處理資訊自行定義。

public

class

student

public

void

setage

(int age)

public string tostring()

}

public

class

inputstudent

catch

(inputmismatchexception e)

system.out.

println

(stu);}

}

學生的資訊

1 乙個學生的資訊是 姓名,學號,性別,年齡等資訊,用乙個鍊錶,把這些學生資訊連在一起,給出乙個age,在些鍊錶中刪除學生年齡等於age的學生資訊。程式 i nclude stdio.h i nclude conio.h struct stu linklist struct stu creatlis...

學生資訊(2)

完成日期 2014年05月08 版本號 v1.0 問題描述 樣例輸入 樣例輸出 問題分析 用簡單的方法,學會活學活用 include using namespace std class stu 宣告基類 void display 成員函式,輸出基類資料成員 protected 訪問許可權為保護型的資...

查詢學生資訊

題目描述 輸入n個學生的資訊,然後進行查詢。輸入 輸入的第一行為n,即學生的個數 n 1000 接下來的n行包括n個學生的資訊,資訊格式如下 01 李江 男 21 02 劉唐 男 23 03 張軍 男 19 04 王娜 女 19 然後輸入乙個m m 10000 接下來會有m行,代表m次查詢,每行輸入...