Person類與Student類的關係

2021-09-23 18:46:07 字數 527 閱讀 8349

problem c: person類與student類的關係time limit: 1 sec memory limit: 128 mb

submit: 3714 solved: 2798

[submit][status]description當然,乙個student首先是乙個person。所以,student類是person類的派生類。請定義person類,包括:

資料成員string name和int age,分別表示姓名和年齡。

建構函式和析構函式,它們有相應的輸出,見樣例。

void show()函式:按照樣例輸出該物件的name和age屬性值。

定義student類,是person類的子類:

資料成員int grade,表示學生所在年級。

建構函式和析構函式,它們有相應的輸出,見樣例。

#include#include#includeusing namespace std;

class person

在這裡插入**片

建立繼承person的student子類

建立建構函式person,新增屬性姓名 name 語文成績 chinese 數學成績 math 新增三個方法,分別返回姓名 語文和數學成績 建立構函式student,繼承person的屬性和方法,並新增屬於自己的屬性年齡 age 新增屬於自己的方法,返回年齡 建立student的物件,並在頁面上輸出...

建立類Student和物件

public class student 定義無參構造方法 public student string n,string s,int a 定義有參方法 void getinfo string n,string s,int a 定義方法getinfo 獲得學生的基本資訊。void showinfo 定...

Lua物件導向寫Student類

物件導向大家都不陌生了,lua可以使用表 table 元表 metatable 來模擬物件導向設計 我們來使用lua寫乙個簡單的student類 宣告型別 student 設定 index元方法 關鍵 student.index student 定義建構函式 function student cre...