@movinliao/h5-class
v0.0.1
Published
h5-class
Downloads
1
Readme
h5-class
模拟面向对象编程
example:
var Example = Class.extend(function(){ // 私有变量 var self = this; var var1 = '';
// 实例私有方法
var privateMethod = function () {
// todo
};
// 实例公开属性
this.var1 = '';
// 构造函数
this.constructor = function () {
// this.super(); // 调用父构造函数
};
// 实例公共方法
this.publicMethod = function () {
// todo
};
});
// 类静态方法 Example.staticMethod = function () { // todo: }
// 创建实例 var obj = new Example();