javascript實現繼承的方式

  1. this  
  2. this表示當前對象,若是在全局做用範圍內使用this,則指代當前頁面對象window; 若是在函數中使用this,則this指代什麼是根據運行時此函數在什麼對象上被調用。 咱們還能夠使用apply和call兩個全局方法來改變函數中this的具體指向。  
  3.   
  4. 先看一個在全局做用範圍內使用this的例子:  
  5.   
  6.         <script type="text/javascript">  
  7.             console.log(this === window);  // true  
  8.             console.log(window.alert === this.alert);  // true  
  9.             console.log(this.parseInt("021", 10));  // 10  
  10.         </script>  
  11.           
  12.    
  13.   
  14. 函數中的this是在運行時決定的,而不是函數定義時,以下:  
  15.   
  16.         // 定義一個全局函數  
  17.         function foo() {  
  18.             console.log(this.fruit);  
  19.         }  
  20.         // 定義一個全局變量,等價於window.fruit = "apple";  
  21.         var fruit = "apple";  
  22.         // 此時函數foo中this指向window對象  
  23.         // 這種調用方式和window.foo();是徹底等價的  
  24.         foo();  // "apple"  
  25.   
  26.         // 自定義一個對象,並將此對象的屬性foo指向全局函數foo  
  27.         var pack = {  
  28.             fruit: "orange",  
  29.             foo: foo  
  30.         };  
  31.         // 此時函數foo中this指向window.pack對象  
  32.         pack.foo(); // "orange"  
  33.           
  34.    
  35.   
  36. 全局函數apply和call能夠用來改變函數中this的指向,以下:  
  37.   
  38.         // 定義一個全局函數  
  39.         function foo() {  
  40.             console.log(this.fruit);  
  41.         }  
  42.           
  43.         // 定義一個全局變量  
  44.         var fruit = "apple";  
  45.         // 自定義一個對象  
  46.         var pack = {  
  47.             fruit: "orange"  
  48.         };  
  49.           
  50.         // 等價於window.foo();  
  51.         foo.apply(window);  // "apple"  
  52.         // 此時foo中的this === pack  
  53.         foo.apply(pack);    // "orange"  
  54.           
  55. 注:apply和call兩個函數的做用相同,惟一的區別是兩個函數的參數定義不一樣。  
  56.    
  57.   
  58. 由於在JavaScript中函數也是對象,因此咱們能夠看到以下有趣的例子:  
  59.   
  60.         // 定義一個全局函數  
  61.         function foo() {  
  62.             if (this === window) {  
  63.                 console.log("this is window.");  
  64.             }  
  65.         }  
  66.           
  67.         // 函數foo也是對象,因此能夠定義foo的屬性boo爲一個函數  
  68.         foo.boo = function() {  
  69.             if (this === foo) {  
  70.                 console.log("this is foo.");  
  71.             } else if (this === window) {  
  72.                 console.log("this is window.");  
  73.             }  
  74.         };  
  75.         // 等價於window.foo();  
  76.         foo();  // this is window.  
  77.           
  78.         // 能夠看到函數中this的指向調用函數的對象  
  79.         foo.boo();  // this is foo.  
  80.           
  81.         // 使用apply改變函數中this的指向  
  82.         foo.boo.apply(window);  // this is window.  
  83.           
  84.    
  85.   
  86. prototype  
  87. 咱們已經在第一章中使用prototype模擬類和繼承的實現。 prototype本質上仍是一個JavaScript對象。 而且每一個函數都有一個默認的prototype屬性。   
  88. 若是這個函數被用在建立自定義對象的場景中,咱們稱這個函數爲構造函數。 好比下面一個簡單的場景:  
  89.   
  90.         // 構造函數  
  91.         function Person(name) {  
  92.             this.name = name;  
  93.         }  
  94.         // 定義Person的原型,原型中的屬性能夠被自定義對象引用  
  95.         Person.prototype = {  
  96.             getName: function() {  
  97.                 return this.name;  
  98.             }  
  99.         }  
  100.         var zhang = new Person("ZhangSan");  
  101.         console.log(zhang.getName());   // "ZhangSan"  
  102.           
  103. 做爲類比,咱們考慮下JavaScript中的數據類型 - 字符串(String)、數字(Number)、數組(Array)、對象(Object)、日期(Date)等。 咱們有理由相信,在JavaScript內部這些類型都是做爲構造函數來實現的,好比:  
  104.         // 定義數組的構造函數,做爲JavaScript的一種預約義類型  
  105.         function Array() {  
  106.             // ...  
  107.         }  
  108.           
  109.         // 初始化數組的實例  
  110.         var arr1 = new Array(1, 56, 34, 12);  
  111.         // 可是,咱們更傾向於以下的語法定義:  
  112.         var arr2 = [1, 56, 34, 12];  
  113.           
  114. 同時對數組操做的不少方法(好比concat、join、push)應該也是在prototype屬性中定義的。   
  115. 實際上,JavaScript全部的固有數據類型都具備只讀的prototype屬性(這是能夠理解的:由於若是修改了這些類型的prototype屬性,則哪些預約義的方法就消失了), 可是咱們能夠向其中添加本身的擴展方法。  
  116.         // 向JavaScript固有類型Array擴展一個獲取最小值的方法  
  117.         Array.prototype.min = function() {  
  118.             var min = this[0];  
  119.             for (var i = 1; i < this.length; i++) {  
  120.                 if (this[i] < min) {  
  121.                     min = this[i];  
  122.                 }  
  123.             }  
  124.             return min;  
  125.         };  
  126.           
  127.         // 在任意Array的實例上調用min方法  
  128.         console.log([1, 56, 34, 12].min());  // 1  
  129.           
  130.   
  131. 注意:這裏有一個陷阱,向Array的原型中添加擴展方法後,當使用for-in循環數組時,這個擴展方法也會被循環出來。   
  132. 下面的代碼說明這一點(假設已經向Array的原型中擴展了min方法):  
  133.         var arr = [1, 56, 34, 12];  
  134.         var total = 0;  
  135.         for (var i in arr) {  
  136.             total += parseInt(arr[i], 10);  
  137.         }  
  138.         console.log(total);   // NaN  
  139.           
  140.           
  141. 解決方法也很簡單:  
  142.         var arr = [1, 56, 34, 12];  
  143.         var total = 0;  
  144.         for (var i in arr) {  
  145.             if (arr.hasOwnProperty(i)) {  
  146.                 total += parseInt(arr[i], 10);  
  147.             }  
  148.         }  
  149.         console.log(total);   // 103  
  150.           
  151.    
  152.   
  153. constructor  
  154. constructor始終指向建立當前對象的構造函數。好比下面例子:  
  155.   
  156.         // 等價於 var foo = new Array(1, 56, 34, 12);  
  157.         var arr = [1, 56, 34, 12];  
  158.         console.log(arr.constructor === Array); // true  
  159.         // 等價於 var foo = new Function();  
  160.         var Foo = function() { };  
  161.         console.log(Foo.constructor === Function); // true  
  162.         // 由構造函數實例化一個obj對象  
  163.         var obj = new Foo();  
  164.         console.log(obj.constructor === Foo); // true  
  165.           
  166.         // 將上面兩段代碼合起來,就獲得下面的結論  
  167.         console.log(obj.constructor.constructor === Function); // true  
  168.           
  169.    
  170.   
  171. 可是當constructor遇到prototype時,有趣的事情就發生了。   
  172. 咱們知道每一個函數都有一個默認的屬性prototype,而這個prototype的constructor默認指向這個函數。以下例所示:  
  173.   
  174.         function Person(name) {  
  175.             this.name = name;  
  176.         };  
  177.         Person.prototype.getName = function() {  
  178.             return this.name;  
  179.         };  
  180.         var p = new Person("ZhangSan");  
  181.           
  182.         console.log(p.constructor === Person);  // true  
  183.         console.log(Person.prototype.constructor === Person); // true  
  184.         // 將上兩行代碼合併就獲得以下結果  
  185.         console.log(p.constructor.prototype.constructor === Person); // true  
  186.           
  187. 當時當咱們從新定義函數的prototype時(注意:和上例的區別,這裏不是修改而是覆蓋), constructor的行爲就有點奇怪了,以下示例:  
  188.         function Person(name) {  
  189.             this.name = name;  
  190.         };  
  191.         Person.prototype = {  
  192.             getName: function() {  
  193.                 return this.name;  
  194.             }  
  195.         };  
  196.         var p = new Person("ZhangSan");  
  197.         console.log(p.constructor === Person);  // false  
  198.         console.log(Person.prototype.constructor === Person); // false  
  199.         console.log(p.constructor.prototype.constructor === Person); // false  
  200.           
  201. 爲何呢?   
  202. 原來是由於覆蓋Person.prototype時,等價於進行以下代碼操做:  
  203.         Person.prototype = new Object({  
  204.             getName: function() {  
  205.                 return this.name;  
  206.             }  
  207.         });  
  208.           
  209. 而constructor始終指向建立自身的構造函數,因此此時Person.prototype.constructor === Object,便是:  
  210.         function Person(name) {  
  211.             this.name = name;  
  212.         };  
  213.         Person.prototype = {  
  214.             getName: function() {  
  215.                 return this.name;  
  216.             }  
  217.         };  
  218.         var p = new Person("ZhangSan");  
  219.         console.log(p.constructor === Object);  // true  
  220.         console.log(Person.prototype.constructor === Object); // true  
  221.         console.log(p.constructor.prototype.constructor === Object); // true  
  222.           
  223. 怎麼修正這種問題呢?方法也很簡單,從新覆蓋Person.prototype.constructor便可:  
  224.         function Person(name) {  
  225.             this.name = name;  
  226.         };  
  227.         Person.prototype = new Object({  
  228.             getName: function() {  
  229.                 return this.name;  
  230.             }  
  231.         });  
  232.         Person.prototype.constructor = Person;  
  233.         var p = new Person("ZhangSan");  
  234.         console.log(p.constructor === Person);  // true  
  235.         console.log(Person.prototype.constructor === Person); // true  
  236.         console.log(p.constructor.prototype.constructor === Person); // true  
相關文章
相關標籤/搜索