console.log('a: ', a.constructor); // Number()
console.log('b: ', b.constructor); // String()
console.log('c: ', c.constructor); // Boolean()
console.log('d: ', d.constructor); // Array()
console.log('e: ', e.constructor); // Object()
console.log('f: ', f.constructor); // Function()
以上的構(gòu)造函數(shù)都是JavaScript內(nèi)置的,我們也可以自定義構(gòu)造函數(shù),如:
代碼如下:
function A(name) {
this.name = name;
}
var a = new A('a');
console.log(a.constructor); // A(name)
調(diào)用構(gòu)造函數(shù)時,需要用new關(guān)鍵字,構(gòu)造函數(shù)返回的是一個對象,看下面的代碼就知道了:
代碼如下:var a = 4;
var b = new Number(4);
console.log('a: ', typeof a); // a: number
console.log('b: ', typeof b); // b: object
二、 prototype
prototype是函數(shù)的一個屬性,默認情況下,一個函數(shù)的prototype屬性的值是一個與函數(shù)同名的空對象,匿名函數(shù)的prototype屬性名為Object。如:
代碼如下:function fn() {}
console.log(fn.prototype); // fn { }
prototype屬性主要用來實現(xiàn)JavaScript中的繼承,如:
代碼如下:function A(name) {
this.name = name;
}
A.prototype.show = function() {
console.log(this.name);
};
function B(name) {
this.name = name;
}
B.prototype = A.prototype;
var test = new B('test');
test.show(); // test
這兒有一個問題,test的構(gòu)造函數(shù)其實是A函數(shù)而不是B函數(shù):
代碼如下:console.log(test.constructor); // A(name)
這是因為B.prototype = A.prototype把B.prototype的構(gòu)造函數(shù)改成了A,所以需要還原B.prototype的構(gòu)造函數(shù):
代碼如下:function A(name) {
this.name = name;
}
A.prototype.show = function() {
console.log(this.name);
};
function B(name) {
this.name = name;
}
B.prototype = A.prototype;
B.prototype.constructor = B;
var test = new B('test');
test.show(); // test
console.log(test.constructor); // B(name)
之所以要這么做,是因為prototype的值是一個對象,且它的構(gòu)造函數(shù)也就是它的constructor屬性的值就是它所在的函數(shù),即:
代碼如下:console.log(A.prototype.constructor === A); // true
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com