class 简单的javascript类库
类库一个简单的类库示例用法:
var Class = require('class');
var Animal = Class.extend(function Animal() {
console.log('Animal:constructor');
this._construct();
var type = 'walk';
this.getWalkType = function() {
return type;
};
return this;
});
Animal.prototype.walk = function() {
console.log('Walking with', this.getWalkType());
};
此类库展示了如何创建并扩展类,以及如何定义和调用实例方法。
用户评论