真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

javascript中class指的是什么

這篇文章主要介紹“javascript中class指的是什么”,在日常操作中,相信很多人在javascript中class指的是什么問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”javascript中class指的是什么”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

為新興等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及新興網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為做網(wǎng)站、網(wǎng)站建設(shè)、新興網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!

在JavaScript中,class的意思是“類”,class關(guān)鍵字用于定義一個(gè)類的模板,類可以理解為是一個(gè)具有相同屬性和行為的群體的集合,語(yǔ)法為“class{設(shè)置變量和方法}”。

本教程操作環(huán)境:windows10系統(tǒng)、javascript1.8.5版、Dell G3電腦。

javascript中class的意思是什么

1、什么是類?

這里我們可以理解類是一個(gè)具有相同屬性和行為的群體的集合。在es6中,首次引入了類的概念,通過(guò)創(chuàng)建class關(guān)鍵字來(lái)定義一個(gè)類的模板。

2、在js中實(shí)現(xiàn)創(chuàng)建一個(gè)Class

class Number{
}

3、實(shí)現(xiàn)Class的構(gòu)造方法、實(shí)例屬性和實(shí)例方法

//構(gòu)造方法
class Number{
//實(shí)例屬性
constructor(id,age){
//this指向當(dāng)前事件
this.id=id;
this.age=age;
}
//實(shí)例方法
num(){
console.log("hh");
}
}
//實(shí)例化對(duì)象
var n1=new Number("1","2");
n1.num(1);
console.log(n1.id);
console.log(n1.age);
var n2=new Number("3","4");
n2.num(2);
console.log(n2.id);
console.log(n2.age);

效果展示:

hh
1
2
hh
3
4

4、Class的靜態(tài)屬性和靜態(tài)方法

//構(gòu)造方法
class Number{
//靜態(tài)屬性調(diào)用一個(gè)方法
static ppp=1;
//實(shí)例屬性
constructor(id,age){
//this指向當(dāng)前事件
this.id=id;
this.age=age;
console.log(Number.ppp)
}
//實(shí)例方法
num(){
console.log("hh");
}}
//實(shí)例化對(duì)象
var n1=new Number("1","2");
n1.num(1);
console.log(n1.id);
console.log(n1.age);
var n2=new Number("3","4");
n2.num(2);
console.log(n2.id);
console.log(n2.age);

效果展示:

1
hh
1
2
1
hh
3
4

5、類的繼承

//父類
class Father{
//構(gòu)造方法不能被繼承
constructor(){
console.log("我是父親");
this.name="father"
}
}
//子類
class Son extend Father{
//執(zhí)行子類構(gòu)造方法之前必須先執(zhí)行父類構(gòu)造方法
constructor(){
super();//執(zhí)行父類構(gòu)造方法
console.log("我是兒子")
}
}
var son=new Son;
console.log(son.name)

效果展示:

我是父親
我是兒子
father

到此,關(guān)于“javascript中class指的是什么”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!


文章標(biāo)題:javascript中class指的是什么
URL分享:http://weahome.cn/article/gspsji.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部