溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

es6與es5的構(gòu)造函數(shù)有哪些區(qū)別

發(fā)布時間:2022-04-26 10:05:41 來源:億速云 閱讀:182 作者:zzz 欄目:web開發(fā)

這篇文章主要介紹“es6與es5的構(gòu)造函數(shù)有哪些區(qū)別”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強(qiáng),希望這篇“es6與es5的構(gòu)造函數(shù)有哪些區(qū)別”文章能幫助大家解決問題。

區(qū)別:1、es6構(gòu)造函數(shù)中類的變量不會被提升,也就是對象只能在類的定義之后才能創(chuàng)建,而es5中聲明構(gòu)造函數(shù)會變量提升;2、es6不可以直接調(diào)用構(gòu)造函數(shù),es5中可以直接調(diào)用構(gòu)造函數(shù),將構(gòu)造函數(shù)當(dāng)成普通函數(shù)使用。

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

es6與es5的構(gòu)造函數(shù)有什么區(qū)別

使用構(gòu)造函數(shù)構(gòu)造可以復(fù)用的對象
構(gòu)造函數(shù)就是你構(gòu)造出來的函數(shù),是一種特殊的方法,與普通函數(shù)有著質(zhì)的區(qū)別,其作用,在創(chuàng)建對象的時候主要用來初始化對象,就是給對象成員賦初始值,構(gòu)造函數(shù)的主要特征就是方法名、首字母大寫,并且用new來使用

ES5

function foo(){
	this.name = 'Katherine';
	this.age  = '26';
}
var f = new foo();
console.log(f)		//Object
console.log(f.name)	//Katherine
console.log(f.age)  //26

function foos(name,age,sex){
	this.name = name;
	this.age  = age;
	this.sex  = sex;
}
var f1 = new foos('Kathrine', '26', 'female');
var f2 = new foos('Stefan', '27', 'male');
var f3 = new foos('Damon', '29', 'male');
console.log(f1) //foos {name: "Kathrine", age: "26", sex: "female"}
console.log(f2) //foos {name: "Stefan", age: "27", sex: "male"}
console.log(f3) //foos {name: "Damon", age: "29", sex: "male"}

ES6

class foo{
	constructor(){
		this.name = 'Karherine';
		this.age  = '26';
	}
	vampire(va){
		console.log('Her name is '+this.name+' and she was '+this.age+' years old')
	}
}
let f = new foo()
	f.vampire();  //Her name is Karherine and she was 26 years old
//繼承原型	
class foos extends foo{
	constructor(){
		super();
		this.name = 'Stefan';
		this.age  = '27';
	}
}	
let f1 = new foos();
	f1.vampire();  //His name is Stefan and he was 27 years old

1、ES5可以用new生成對象,也可以直接調(diào)用構(gòu)造函數(shù),直接調(diào)用當(dāng)成普通函數(shù)使用。比如函數(shù)foo();

2、ES6必須用new生成對象,不可以直接調(diào)用構(gòu)造函數(shù)成普通函數(shù)使用。

與ES5不同,類的變量不會被提升,也就是說對象只能在類的定義之后才能創(chuàng)建。

類的調(diào)用必須要使用new,而普通的構(gòu)造函數(shù)可以當(dāng)作普通函數(shù)來使用。

關(guān)于“es6與es5的構(gòu)造函數(shù)有哪些區(qū)別”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI