JavaScript的寫類方式(2)

來源:互聯網
上載者:User

這篇開始會記錄一些寫類的工具函數,通過上篇我們知道本質上都是 建構函式+原型。理解了它碰到各式各樣的寫類方式就不懼怕了。

建構函式 + 原型 直接組裝一個類;同一建構函式將組裝出同一類型

/** * $class 寫類工具函數之一 * @param {Function} constructor * @param {Object} prototype */function $class(constructor,prototype) {var c = constructor || function(){};var p = prototype || {};c.prototype = p;return c;}

用建構函式來產生類執行個體的屬性(欄位),原型對象用來產生類執行個體的方法。 

//建構函式function Person(name) {this.name = name;}//原型對象var proto = {getName : function(){return this.name},setName : function(name){this.name = name;}}//組裝var Man = $class(Person,proto);var Woman = $class(Person,proto);

這時候已經得到了兩個類Man,Woman。並且是同一個類型的。測試如下:

console.log(Man == Woman); //trueconsole.log(Man.prototype == Woman.prototype); //true

建立對象看看

var man = new Man("Andy");var woman = new Woman("Lily");console.log(man instanceof Man); //trueconsole.log(woman instanceof Woman); //trueconsole.log(man instanceof Person); //trueconsole.log(woman instanceof Person); //true

ok,一切如我們所期望。但是有個問題,下面代碼的結果輸出false

console.log(man.constructor == Person); //false

這讓人不悅:從以上的代碼看出man的確是通過Man類new出來的 var man = new Man("Andy"),那麼對象執行個體man的構造器應該指向Man,但為何事與願違呢?

原因就在於$class中重寫了Person的原型:c.prototype = p; 
好了,我們把$class稍微改寫下,將方法都掛在構造器的原型上(而不是重寫構造器的原型),如下:

function $class(constructor,prototype) {var c = constructor || function(){};var p = prototype || {};//c.prototype = p;for(var atr in p){c.prototype[atr] = p[atr];}return c;}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.