快速业务通道

[探讨]JavaScript面向对象编程

作者 佚名技术 来源 互联网 浏览 发布时间 2012-01-13

那么,我们能不能把这些东西封装起来呢,我们需要使用 prototype。看下面的示例:

  1. var Cal = function(x, y){  
  2.     this.x = x;  
  3.     this.y = y;  
  4. }  
  5.    
  6. Cal.prototype.operations = {  
  7.     '+': function(x, y) { return x+y;},  
  8.     '-': function(x, y) { return x-y;}  
  9. };  
  10.    
  11. Cal.prototype.calculate = function(operation){  
  12.     return this.operations[operation](this.x, this.y);  
  13. };  
  14.    
  15. var c = new Cal(4, 5);  
  16.    
  17. c.calculate('+');  
  18. c.calculate('-'); 

这就是 prototype 的用法,prototype 是 javascript 这个语言中最重要的内容。网上有太多的文章介始这个东西了。说白了,prototype 就是对一对象进行扩展,其特点在于通过“复制”一个已经存在的实例来返回新的实例,而不是新建实例。被复制的实例就是我们所称的“原型”,这个原型是可定制的(当然,这里没有真正的复制,实际只是委托)。上面的这个例子中,我们扩展了实例 Cal,让其有了一个 operations 的属性和一个 calculate 的方法。

这样,我们可以通过这一特性来实现继承。还记得我们最最前面的那个 Person 吧, 下面的示例是创建一个 Student 来继承 Person。

  1. function Person(name, email, website){  
  2.     this.name = name;  
  3.     this.email = email;  
  4.     this.website = website;  
  5. };  
  6.    
  7. Person.prototype.sayHello = function(){  
  8.     var hello = "Hello, I am "+ this.name  + ", <br>" +  
  9.                 "my email is: " + this.email + ", <br>" +  
  10.                 "my website is: " + this.website;  
  11.     return hello;  
  12. };  
  13.    
  14. function Student(name, email, website, no, dept){  
  15.     var proto = Object.getPrototypeOf;  
  16.     proto(Student.prototype).constructor.call(this, name, email, website);  
  17.     this.no = no;  
  18.     this.dept = dept;  
  19. }  
  20.    
  21. // 继承prototype  
  22. Student.prototype = Object.create(Person.prototype);  
  23.    
  24. //重置构造函数  
  25. StudentStudent.prototype.constructor = Student;  
  26.    
  27. //重载sayHello()  
  28. Student.prototype.sayHello = function(){  
  29.     var proto = Object.getPrototypeOf;  
  30.     var hello = proto(Student.prototype).sayHello.call(this) + '<br>';  
  31.     hello += "my student no is: " + this. no + ", <br>" +  
  32.              "my departent is: " + this. dept;  
  33.     return hello;  
  34. };  
  35.    
  36. var me = new Student(  
  37.     "Chen Hao",  
  38.     "haoel@hotmail.com",  
  39.     "http://coolshell.cn",  
  40.     "12345678",  
  41.     "Computer Science"  
  42. );  
  43. document.write(me.sayHello()); 

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号