javascript 寫類方式之十

來源:互聯網
上載者:User

10、mootools.js的寫類方式
mootools.js的最新版本是1.2.3,這裡使用的是1.2.0。mootool被設計成非常緊湊的,模組化的,物件導向的的js庫。mootool中寫類用Class類。Class類由Native類new出來的: 複製代碼 代碼如下:/*
*Script: Class.js
*/
var Class = new Native({
name: 'Class',

initialize: function(properties){
properties = properties || {};
var klass = function(empty){
for (var key in this) this[key] = $unlink(this[key]);
for (var mutator in Class.Mutators){
if (!this[mutator]) continue;
Class.Mutators[mutator](this, this[mutator]);
delete this[mutator];
}
this.constructor = klass;
if (empty === $empty) return this;

var self = (this.initialize) ? this.initialize.apply(this, arguments) : this;
if (this.options && this.options.initialize) this.options.initialize.call(this);
return self;
};

$extend(klass, this);
klass.constructor = Class;
klass.prototype = properties;
return klass;
}
});

Native方法是mootools中一個非常重要的方法,很多類都用它去組裝。如Window,Document,Event。當然還有這裡的Class,匯入mootools後我們寫類時只需要用Class就行了。一個Person類: 複製代碼 代碼如下:/**
* Person類
* @param {Object} name
*/
var Person = new Class({
initialize: function(name){
this.name = name;
},
setName : function(name) {
this.name = name;
},
getName : function() {
return this.name;
}
})

//new一個對象
var p = new Person("jack");

//測試set,get方法
console.log(p.getName());//jac
p.setName('andy');
console.log(p.getName());//andy

//測試instanceof及p.constructor是否正確指向了Person
console.log(p instanceof Person); //true
console.log(p.constructor == Person); //true

Native實際上只是一個普通函數,它通過所傳參數組裝了一個類(function),最後返回該類(function)。既然Native是函數,函數調用的方式是(),call,apply。但在mootools中卻用new Native(obj)方式。為何?原因只是使Native看起來更像一個類而已。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.