js模拟的类亦可以模拟类方法和实例方法,原理仍然是prototype和属性的区别。

静态方法是指不需要声明类的实例就可以使用的方法。

实例方法是指必须要先使用"new"关键字声明一个类的实例, 然后才可以通过此实例访问的方法。

function staticClass() { }; //声明一个类
staticClass.staticMethod = function() { alert("static method") }; //创建一个静态方法
staticClass.prototype.instanceMethod = function() { "instance method" }; //创建一个实例方法


 
上面首先声明了一个类staticClass, 接着为其添加了一个静态方法staticMethod 和一个动态方法instanceMethod。区别就在于添加动态方法要使用prototype原型属性。
 
对于静态方法可以直接调用   staticClass.staticMethod();
但是动态方法不能直接调用   staticClass.instanceMethod(); //语句错误, 无法运行。
 
需要首先实例化后才能调用   var instance = new staticClass(); //首先实例化
instance.instanceMethod(); //在实例上可以调用实例方法

发表评论