内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

JavaScript類的繼承操作實(shí)例總結(jié)

本文實(shí)例總結(jié)了JavaScript類的繼承操作。分享給大家供大家參考,具體如下:

創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的興海網(wǎng)站設(shè)計(jì)、移動媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

一、類式繼承

首先要做的是創(chuàng)建構(gòu)造函數(shù)。按慣例,其名稱就是類名,首字母應(yīng)該大寫。在構(gòu)造函數(shù)中,創(chuàng)建實(shí)例屬性要用關(guān)鍵字this 。類的方法則被添加到prototype對象中。要創(chuàng)建該類的實(shí)例,只需結(jié)合關(guān)鍵字new調(diào)用這構(gòu)造函數(shù)即可。

/* Class Person. */
function Person(name) {
 this.name = name;
}
Person.prototype.getName = function() {
 return this.name;
}
var reader = new Person('John Smith');
reader.getName();

二、原型鏈

JavaScript的每個(gè)對象都有一個(gè)名為prototype的屬性,這個(gè)屬性要么指向另一個(gè)對象,要么是null.在訪問對象的某個(gè)成員時(shí),如果這個(gè)成員未見于當(dāng)前對象,那么就會到prototype所指的對象中去查找。如果還是沒有找到,那么就會沿著原型鏈逐一訪問每個(gè)原型對象,直到找到這個(gè)成員。這意味著讓一個(gè)類繼承另一個(gè)類,只需將子類的prototype設(shè)置為超類的一個(gè)實(shí)例即可。

為了讓Author繼承Person,必須手工將Author的prototype設(shè)置為Person的一個(gè)實(shí)例。最后一步是將prototypeconstruct屬性重設(shè)為Author(因?yàn)?code>prototype屬性設(shè)置為Person的實(shí)例)時(shí),其construct屬性被抹除了。

function Author(name, books) {
 Person.call(this, name); // Call the superclass' constructor in the scope of this.
 this.books = books; // Add an attribute to Author.
}
Author.prototype = new Person(); // Set up the prototype chain.
Author.prototype.constructor = Author; // Set the constructor attribute to Author.
Author.prototype.getBooks = function() { // Add a method to Author.
 return this.books;
};
var author = [];
author[0] = new Author('Dustin Diaz', ['JavaScript Design Patterns']);
author[1] = new Author('Ross Harmes', ['JavaScript Design Patterns']);
console.log(author[1].getName());
console.log(author[1].getBooks());

三、extend函數(shù)

為了簡化類的聲明,可以把派生子類的整個(gè)過程包裝在一個(gè)名為extend的函數(shù)中。它的作用與其他語言的extend關(guān)鍵字類似,即基于一個(gè)給定的類的結(jié)構(gòu)創(chuàng)建一個(gè)新的類:

function extend(subClass, superClass) {
 var F = function() {};
 F.prototype = superClass.prototype;
 subClass.prototype = new F();
 subClass.prototype.constructor = subClass;
}

其實(shí)所做的事與之前的是一樣的。它先設(shè)置了prototype,然后再將其constructor重設(shè)為恰當(dāng)?shù)闹?。并且中間利用了一個(gè)空函數(shù),這樣就可以避免創(chuàng)建超類的實(shí)例。使用extend繼承的寫法:

function Person(name) {
 this.name = name;
}
Person.prototype.getName = function() {
 return this.name;
}
/* Class Author. */
function Author(name, books) {
 Person.call(this, name);
 this.books = books;
}
extend(Author, Person);
Author.prototype.getBooks = function() {
 return this.books;
};

但上面的存在一個(gè)問題就是超類Person的名稱被固化在Author類的聲明當(dāng)中。更普世性的做法應(yīng)該像下面這樣:

/* Extend function, improved. */
function extend(subClass, superClass) {
 var F = function() {};
 F.prototype = superClass.prototype;
 subClass.prototype = new F();
 subClass.prototype.constructor = subClass;
 subClass.superclass = superClass.prototype;
 if(superClass.prototype.constructor == Object.prototype.constructor) {
  superClass.prototype.constructor = superClass;
 }
}
/* Class Author. */
function Author(name, books) {
 Author.superclass.constructor.call(this, name);
 this.books = books;
}
extend(Author, Person);
Author.prototype.getBooks = function() {
 return this.books;
};
Author.prototype.getName = function() {
 var name = Author.superclass.getName.call(this);
 return name + ', Author of ' + this.getBooks().join(', ');
};

這個(gè)extend改進(jìn)之后,多了一個(gè)superclass的屬性,這個(gè)屬性可以弱化Author和Person之間的耦合。extend后面三行用來確保超類的construtor已經(jīng)被正確設(shè)置了。有了superclass的屬性,就可以直接調(diào)用超類中的方法。這在既要重新定義超類的某個(gè)方法而又想訪問其在超類中的實(shí)現(xiàn)時(shí)可以派上用場。例如,為了用一個(gè)新的getName的方法重新定義Person類中的同名方法,你可以先用Author.superclass.getName獲得作者的名字,然后再次基礎(chǔ)上添加新的信息。

四、原型繼承

原型式繼承與類式繼承截然不同,我們在學(xué)習(xí)他的時(shí)候,最好忘記自己關(guān)于類和實(shí)例的一切知識,只從對象的角度來思考。使用原型式繼承時(shí),并不需要用類來定義對象的結(jié)構(gòu),只需直接創(chuàng)建一個(gè)對像就可以。這個(gè)對象隨后可以被新的對象使用,該對象被稱為原型對象。

下面使用原型對象來重新設(shè)計(jì)上面Person和Author:

var Person = {
 name: 'default name',
 getName: function() {
  return this.name;
 }
};
var reader = clone(Person);
alert(reader.getName()); // This will output 'default name'.
reader.name = 'John Smith';
alert(reader.getName()); // This will now output 'John Smith'.

clone函數(shù)可以用來創(chuàng)建新的類Person對象,創(chuàng)建一個(gè)空對象,并且該對象的原型對象被設(shè)置為person。當(dāng)新對象中找不到某個(gè)方法時(shí)就會在原型對象中查找。

你不必去為了創(chuàng)建Author而定義一個(gè)Person子類,只要執(zhí)行一次克隆就可以:

var Author = clone(Person);
Author.books = []; // Default value.
Author.getBooks = function() {
 return this.books;
}

然后你可以重定義該克隆中的方法和屬性??梢孕薷腜erson的默認(rèn)值。也可以添加新的屬性和方法。這樣一來就創(chuàng)建了一個(gè)新的原型對象,你可以將其用于創(chuàng)建新的Author對象:

var author = [];
author[0] = clone(Author);
author[0].name = 'Dustin Diaz';
author[0].books = ['JavaScript Design Patterns'];
author[1] = clone(Author);
author[1].name = 'Ross Harmes';
author[1].books = ['JavaScript Design Patterns'];
author[1].getName();
author[1].getBooks();

clone函數(shù)的寫法:

function clone(object) {
  function F() {}
  F.prototype = object;
  return new F;
}

五、原型繼承和類式繼承之間的比較

可以自己去總結(jié)、
從內(nèi)存,適用范圍,優(yōu)缺點(diǎn)等方面去分析

六、摻元類

有一種重用代碼的方法不需要用到嚴(yán)格的繼承,如果想把一個(gè)函數(shù)運(yùn)用到多個(gè)類當(dāng)中,可以通過擴(kuò)充的方法讓這些類共享函數(shù)。其實(shí)際大體做法就是:先創(chuàng)建一個(gè)包含各種通用的方法類,然后再擴(kuò)充其他類,這種包含通用方法類稱為摻元類,他們通常不會被實(shí)例化和直接調(diào)用,其存在的目的是向其他類提供自己的方法。

var Mixin = function() {};
Mixin.prototype = {
 serialize: function() {
  var output = [];
  for(key in this) {
   output.push(key + ': ' + this[key]);
  }
  return output.join(', ');
 }
};
augment(Author, Mixin);
var author = new Author('Ross Harmes', ['JavaScript Design Patterns']);
var serializedString = author.serialize();
function augment(receivingClass, givingClass) {
 for(methodName in givingClass.prototype) {
  if(!receivingClass.prototype[methodName]) {
   receivingClass.prototype[methodName] = givingClass.prototype[methodName];
  }
 }
}

但是有時(shí)候你并不需要所有的方法,因此我們還需要提供額外的參數(shù)來選擇我們所需要的方法。如果不提供,那就全部復(fù)制。

function augment(receivingClass, givingClass) {
 if(arguments[2]) { // Only give certain methods.
  for(var i = 2, len = arguments.length; i < len; i++) {
   receivingClass.prototype[arguments[i]] = givingClass.prototype[arguments[i]];
  }
 }
 else { // Give all methods.
  for(methodName in givingClass.prototype) {
   if(!receivingClass.prototype[methodName]) {
    receivingClass.prototype[methodName] = givingClass.prototype[methodName];
   }
  }
 }
}

更多關(guān)于JavaScript相關(guān)內(nèi)容還可查看本站專題:《javascript面向?qū)ο笕腴T教程》、《JavaScript錯(cuò)誤與調(diào)試技巧總結(jié)》、《JavaScript數(shù)據(jù)結(jié)構(gòu)與算法技巧總結(jié)》、《JavaScript遍歷算法與技巧總結(jié)》及《JavaScript數(shù)學(xué)運(yùn)算用法總結(jié)》

希望本文所述對大家JavaScript程序設(shè)計(jì)有所幫助。

網(wǎng)站欄目:JavaScript類的繼承操作實(shí)例總結(jié)
文章源于:http://www.rwnh.cn/article34/pgcese.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站網(wǎng)站排名、微信小程序靜態(tài)網(wǎng)站、微信公眾號網(wǎng)站內(nèi)鏈

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司
镇原县| 忻州市| 白朗县| 临江市| 沙湾县| 大新县| 昂仁县| 宁明县| 隆尧县| 沁水县| 镇雄县| 宜宾县| 诸暨市| 鸡西市| 新河县| 乌海市| 大安市| 延津县| 清丰县| 宜阳县| 茂名市| 凤台县| 德昌县| 穆棱市| 台东县| 宜丰县| 德格县| 大兴区| 柯坪县| 铁岭县| 株洲市| 绥中县| 通化县| 和平县| 垫江县| 松江区| 武陟县| 武功县| 百色市| 修水县| 郴州市|