JavaScript的相关继承笔记以及使用外部库实现JavaScript的面向对象特性

       ECMAScript是通过ECMA-262标准化的脚本程序设计语言,面向对象的JavaScript是对其的扩展和支持。
       面向对象语言有能力支持类以及类中方法和属性的重用,在JavaScript中实现继承可以通过本身的多种方法来实现,比如call()、apply()、仿冒、原型链,其中各有优缺点,此外还可以通过一些外部库实现继承的能力,比如xbObject、zinherit等。
◎通过对象仿冒来实现继承:
  
  
  
  
  1. <script type="text/javascript">  
  2. function Parent(pName){  
  3.    this.name = pName;  
  4.    this.sayMyName = function(){  
  5.       alert(this.name);  
  6.    };  
  7. }  
  8.  
  9. function Mother(pName){  
  10.    this.name = pName;  
  11.    this.sayMyName = function(){  
  12.       alert(this.name+"sex*y");  
  13.    };  
  14. }  
  15.  
  16. function Child(cName,cNumber){  
  17.     this.myFace = Parent;  
  18.     this.myFace(cName);  
  19.     delete this.myFace;  
  20.  
  21.     this.myFace = Mother;  
  22.     this.myFace(cName);  
  23.     delete this.myFace;  
  24.  
  25.     this.number = cNumber;  
  26.     this.sayNumber = function(){  
  27.       alert(this.number);  
  28.     };  
  29. }  
  30.  
  31. var ObjP =new Parent("HideHai");  
  32. var ObjM =new Mother("Hidewow");  
  33. var ObjC =new Child("HideLow",3);  
  34.  
  35. ObjP.sayMyName();  
  36. ObjM.sayMyName();  
  37. ObjC.sayMyName();  
  38. ObjC.sayNumber();  
  39.   </script> 
 ◎使用call()实现对象继承:
        call(obj,option....)  第一个参数是输入对象作为当前的this,其余的参数传递给函数本身。
 
  
  
  
  
  1. <script type="text/javascript">  
  2. function Parent(pName){  
  3.    this.name = pName;  
  4.    this.sayMyName = function(){  
  5.       alert(this.name);  
  6.    };  
  7. }  
  8.  
  9. function Mother(pName){  
  10.    this.name = pName;  
  11.    this.sayMyName = function(){  
  12.       alert(this.name+"sex*y");  
  13.    };  
  14. }  
  15.  
  16. function Child(cName,cNumber){  
  17.       
  18.     Parent.call(this,cName);  
  19.  
  20.     Mother.call(this,cName);  
  21.  
  22.     this.number = cNumber;  
  23.     this.sayNumber = function(){  
  24.       alert(this.number);  
  25.     };  
  26. }  
  27.  
  28. var ObjP =new Parent("HideHai");  
  29. var ObjM =new Mother("Hidewow");  
  30. var ObjC =new Child("HideLow",3);  
  31.  
  32. ObjP.sayMyName();  
  33. ObjM.sayMyName();  
  34. ObjC.sayMyName();  
  35. ObjC.sayNumber();  
  36.   </script> 
◎使用apply()方法实现继承:
   apply(obj,options[...])   第一个参数等同于call方法的第一个参数,第二个参数为一个以传入参数为元素的数组。
  
  
  
  
  1. ....   //代码同上  
  2. function Child(cName,cNumber){  
  3.       
  4.     Parent.apply(this,new Array(cName));  
  5.  
  6.     Mother.call(this,new Array(cName));  
  7.  
  8.     this.number = cNumber;  
  9.     this.sayNumber = function(){  
  10.       alert(this.number);  
  11.     };  
◎使用原型链实现继承:
  关键代码为 Child.prototype = new Parent(); 将Parent的属性和方法赋予Child。在原型链的使用中,对子类的构造函数不传递参数是标准做法。
 
  
  
  
  
  1. <script type="text/javascript">  
  2. function Parent(pName){  
  3.    this.name = pName;  
  4.    this.sayMyName = function(){  
  5.       alert(this.name);  
  6.    };  
  7. }  
  8.  
  9. function Child(){  
  10. }  
  11. Child.prototype = new Parent();  
  12. Child.prototype.name = "";  
  13. Child.prototype.number = 0;  
  14. Child.prototype.sayNumber = function(){  
  15.       alert(this.number);  
  16.     };  
  17.  
  18. var ObjP =new Parent("HideHai");  
  19. //var ObjM =new Mother("Hidewow");  
  20. var ObjC =new Child("HideLow");  
  21.  
  22. ObjC.name = "HideLow";  
  23. ObjC.number = 3;  
  24.  
  25. ObjP.sayMyName();  
  26. ObjC.sayMyName();  
  27. ObjC.sayNumber();  
  28.   </script> 
 ◎使用混合方式实现继承:
     在JavaScript中定义类普遍用构造函数声明类的属性,在使用原型方式prototype定义类的方法,采用混合方式来实现继承可以规避上一种方法原型链中不对构造函数传递参数的不足。
 
  
  
  
  
  1. <script type="text/javascript">  
  2. function Parent(pName){  
  3.    this.name = pName;  
  4. }  
  5. Parent.prototype.sayMyName = function(){  
  6.       alert(this.name);  
  7.    };  
  8.  
  9. function Child(cName,cNumber){  
  10.    Parent.call(this,cName);  //Parent.apply(this,new Aarray(cName));
  11.    this.name = cName;  
  12. }  
  13. Child.prototype =new Parent();  
  14. Child.prototype.sayNumber = function(){  
  15.       alert(this.number);  
  16.     };  
  17.  
  18. var ObjP =new Parent("HideHai");  
  19. //var ObjM =new Mother("Hidewow");  
  20. var ObjC =new Child("HideLow");  
  21.  
  22. ObjC.name = "HideLow";  
  23. ObjC.number = 3;  
  24.  
  25. ObjP.sayMyName();  
  26. ObjC.sayMyName();  
  27. ObjC.sayNumber();  
  28.   </script> 
 ◎使用外部库实现继承:
    →zInherit
   下载zInherit库,在需要的文件中导入外部文件:zInherit.js
zInherit对Object添加了2个延伸方法:inheritForm()与instanceOf() ,inheritForm()复制指定类的方法等同于上面的Child.prototype = new Parent(); instanceOf() 方法可以判断一个类是不是某个类的导出类。
示例代码同上,Child.prototype = new Parent(); 替换为 Child.prototype = inheritForm(Parent); 即可。
使用zInherit可以让代码支持以动态原型的方式来实现多重继承片段:
 
  
  
  
  
  1. function Parent(pName){  
  2.    this.name = pName;  
  3.    if(typeof Parent._initialized == "undefined"){  
  4.       Parent.prototype.sayxName= function(){  
  5.       alert(this.name);  
  6.      };  
  7.      Parent._initialized = true;  
  8.    }  
  9. }  
  10.  
  11. function Mother(pName){  
  12.    this.name = pName+"sex*y";  
  13.    if(typeof Mother._initialized == "undefined"){  
  14.       Parent.prototype.sayyName= function(){  
  15.       alert(this.name);  
  16.      };  
  17.      Mother._initialized = true;  
  18.    }  
  19. }  
  20.  
  21. function Child(cName,cNumber){  
  22.    Parent.call(this,cName);  
  23.    Mother.call(this,cName);  
  24.    this.name = cName;  
  25.  
  26.    if(typeof Parent._initialized == "undefined"){  
  27.         Child.prototype = inheritForm(Parent);  
  28.         Child.prototype = inheritForm(Mother);  
  29.         Child.prototype.sayNumber = function(){  
  30.         alert(this.number);  
  31.     };  
  32.     Child._initialized = true;  
  33.    }  
  34.  
  35.  
 →xbObject     http://archive.bclary.com/
定义超类: _classes.registerClass("Grandpa");
定义继承:  _classes.registerClass("Parent","Grandpa");
 
  
  
  
  
  1.  
  2. _classes.registerClass("Grandpa");  
  3.  
  4. function Grandpa(pName){  
  5.  
  6.    _classes.defineClass("Grandpa",prototypeFunction);  
  7.  
  8.    this.init(pName);   //init方法接受和构造函数相同的方法  
  9.      
  10.    function prototypeFunction () {  
  11.      Grandpa.prototype.init =  function (pName) {  
  12.        this.parentMethod("init");   //parentMethod方法可以传递多个参数,第一个参数为要调用的父类方法名字,然后其他参数被传递给此方法  
  13.        this.name = pName;  
  14.      }  
  15.  
  16.      Grandpa.prototype.saynName =  function () {  
  17.          alert(this.name);  
  18.      }  
  19.    }  
  20. }  
  21.  
  22. _classes.registerClass("Parent","Grandpa");  
  23. function Parent(pName,cNumber){  
  24.  
  25.    _classes.defineClass("Parent",prototypeFunction);  
  26.  
  27.    this.init(pName,cNumber);   //init方法接受和构造函数相同的方法  
  28.      
  29.    function prototypeFunction () {  
  30.        Parent.prototype.init =  function (pName,cNumber) {  
  31.        this.parentMethod("init");   
  32.        this.name = pName;  
  33.        this.number = cNumber;  
  34.      }  
  35.  
  36.       Parent.prototype.sayMyName =  function () {  
  37.          alert(this.name);  
  38.      }  
  39.  
  40.       Parent.prototype.sayMyNumber =  function () {  
  41.          alert(this.number);  
  42.      }  
  43.    }  
 

你可能感兴趣的:(JavaScript,职场,休闲)