javascript可以定义实例方法吗
程序员文章站
2022-03-06 22:40:21
...
javascript可以定义实例方法,方法:1、利用JavaScript对象原型引用prototype来实现实例方法;2、在对象实例上直接定义方法;3、通过this指针来定义实例方法。
本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
1、利用JavaScript对象原型引用prototype来实现实例方法
var BaseClass = function() {}; BaseClass.prototype.method1 = function(){ alert(' This is a instance method '); } var instance1 = new BaseClass(); instance1.method1(); //This is a instance method
2、在实例上直接定义方法(对象)
var BaseClass = function() {}; var instance1 = new BaseClass(); instance1.method1 = function(){ alert(' This is a instance method too '); } instance1.method1();//This is a instance method too
3、通过this指针来定义实例方法 (变量)
var BaseClass = function() { this.method1 = function(){ alert(' Defined by the "this" instance method'); } }; var instance1 = new BaseClass(); instance1.method1();//Defined by the "this" instance method
那么同时咋实例、原型引用上和"this"上定义相同的实例方法后,实例会优先调用哪一个呢?
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();//Defined directly in the instance method
* 通过运行结果跟踪测试可以看出直接砸实例上的变量的优先级要高于定义在“this”上的;
* 而定义在“this”上的又高于prototype定义的变量;
* 即直接定义在实例上的变量会覆盖定义在“this”上和prototype定义的变量,定义在“this'”上的会覆盖prototypetype定义的变量。
【推荐学习:javascript高级教程】
以上就是javascript可以定义实例方法吗的详细内容,更多请关注其它相关文章!
上一篇: Js前端性能优化总结
推荐阅读
-
JavaScript中十种一步拷贝数组的方法实例详解
-
android 自定义TabActivity的实例方法
-
小米平板可以导航吗?小米平板导航方法详细介绍
-
酷狗音乐app可以录制短视频吗?使用酷狗音乐录制视频的方法介绍
-
JavaScript for-in遍历,ES6的for-of遍历,可迭代对象的forEach()方法实例讲解
-
火狐浏览器可以翻译网页吗?火狐浏览器翻译网页功能使用方法介绍
-
ipad air cellular可以用4G网络吗?港版ipad air cellular电信4g上网方法
-
社保卡可以重置密码吗?社保卡设置支付密码的方法
-
Jquery基于Ajax方法自定义无刷新提交表单Form实例
-
使用Python自动化破解自定义字体混淆信息的方法实例