建立繼承person的student子類

2022-07-02 23:45:12 字數 1821 閱讀 4395

建立建構函式person,新增屬性姓名(name)、語文成績(chinese)、數學成績(math);

新增三個方法,分別返回姓名、語文和數學成績

建立構函式student,繼承person的屬性和方法,並新增屬於自己的屬性年齡(age),

新增屬於自己的方法,返回年齡

建立student的物件,並在頁面上輸出例項的姓名、語文、數學成績和年齡

doctype html

>

<

html

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>建立繼承person的student子類

title

>

head

>

<

body

>

<

p>姓名:<

span

id="name"

>

span

>

p>

<

p>語文:<

span

id="chinese"

>

span

>

p>

<

p>數學:<

span

id="math"

>

span

>

p>

<

p>年齡:<

span

id="age"

>

span

>

p>

<

script

>

function

person(name,chinese,math)

person.prototype.showname

=function

();person.prototype.showchinese

=function

();person.prototype.showmath

=function

();function

student(name,chinese,math,age)

student.prototype

=new

person();

student.prototype.showage

=function

();var

student1

=new

student("浩然

",100,

107,

108);

document.getelementbyid(

"name

").innerhtml

=student1.showname();

document.getelementbyid(

"chinese

").innerhtml

=student1.showchinese();

document.getelementbyid(

"math

").innerhtml

=student1.showmath();

document.getelementbyid(

"age

").innerhtml

=student1.showage();

script

>

body

>

html

>

python建立person類 建立和使用類

python類和物件 python是一種物件導向的程式語言。python中的幾乎所有東西都是具有其屬性和方法的物件。類就像物件的建構函式,或者是建立物件的 藍圖 建立類 要建立乙個類,請使用關鍵字 class 示例,建立乙個名為myclass的類,並帶有乙個名為x的屬性 class myclass ...

建立乙個類Person的簡單例項

建立乙個類person,包含以下屬性 姓名 name 年齡 age 朋友 friends陣列 問候 sayhi方法,輸出問候語,例如 你好!交朋友 addfwww.cppcns.comriend方法,向friends裡新增乙個值 然程式設計客棧後建立兩個此類的例項 小張 22,小李 小王 你好!ja...

學習Person係數的使用

皮爾森相關係數 pearson correlation coefficient 也稱皮爾森積矩相關係數 pearson product moment correlation coefficient 是一種線性相關係數。皮爾森相關係數是用來反映兩個變數線性相關程度的統計量。相關係數用r表示,其中n為樣...