Javascript方法小札记
来源:程序员人生 发布时间:2015-04-13 08:22:35 阅读次数:3804次
1静态方法
存储在运行内存上的静态区域,该类方法由JS体系内类所持有。
-
var BaseClass = new Function;
-
var Class2 = BaseClass;
-
BaseClass.f1 = function(){
-
alert("BaseClass ' s static method");
-
}
-
Class2.f2 = function(){
-
alert("Class2 ' s static method");
-
}
-
BaseClass.f1();
-
BaseClass.f2();
-
Class2.f1();
-
Class2.f2();
2对象方法
对象方法即创建对象时,以属性的方式创建的方法,同时加入了该对象的原型链中。
3原型方法
1般用于既存的对象,扩大该对象或扩大继承该对象的对象。将方法动态的添加到对象的原型链中。
-
var BaseClass = function() {
-
this.method1 = function(){
-
alert(' Defined by the "this" in the instance method');
-
}
-
};
-
var instance1 = new BaseClass();
-
instance1.method1 = function(){
-
alert(' Defined directly in the instance method');
-
}
-
BaseClass.prototype.method1 = function(){
-
alert(' Defined by the prototype instance method ');
-
}
-
instance1.method1();
通过运行结果跟踪测试可以看出直接定义在实例上的变量的优先级要高于定义在“this”上的,而定义在“this”上的又高于 prototype定义的变量。即直接定义在实例上的变量会覆盖定义在“this”上和prototype定义的变量,定义在“this”上的会覆盖prototype定义的变量。
根据运行测试,可以判断,对象方法创建时,是将方法加入原型链堆栈的最上层,而实例对象中,原型的调用又相对本身对象方法处于底层。
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠