javascript實現繼承的方式
- this
- this表示當前對象,若是在全局做用範圍內使用this,則指代當前頁面對象window; 若是在函數中使用this,則this指代什麼是根據運行時此函數在什麼對象上被調用。 咱們還能夠使用apply和call兩個全局方法來改變函數中this的具體指向。
-
- 先看一個在全局做用範圍內使用this的例子:
-
- <script type="text/javascript">
- console.log(this === window);
- console.log(window.alert === this.alert);
- console.log(this.parseInt("021", 10));
- </script>
-
-
-
- 函數中的this是在運行時決定的,而不是函數定義時,以下:
-
-
- function foo() {
- console.log(this.fruit);
- }
-
- var fruit = "apple";
-
-
- foo();
-
-
- var pack = {
- fruit: "orange",
- foo: foo
- };
-
- pack.foo();
-
-
-
- 全局函數apply和call能夠用來改變函數中this的指向,以下:
-
-
- function foo() {
- console.log(this.fruit);
- }
-
-
- var fruit = "apple";
-
- var pack = {
- fruit: "orange"
- };
-
-
- foo.apply(window);
-
- foo.apply(pack);
-
- 注:apply和call兩個函數的做用相同,惟一的區別是兩個函數的參數定義不一樣。
-
-
- 由於在JavaScript中函數也是對象,因此咱們能夠看到以下有趣的例子:
-
-
- function foo() {
- if (this === window) {
- console.log("this is window.");
- }
- }
-
-
- foo.boo = function() {
- if (this === foo) {
- console.log("this is foo.");
- } else if (this === window) {
- console.log("this is window.");
- }
- };
-
- foo();
-
-
- foo.boo();
-
-
- foo.boo.apply(window);
-
-
-
- prototype
- 咱們已經在第一章中使用prototype模擬類和繼承的實現。 prototype本質上仍是一個JavaScript對象。 而且每一個函數都有一個默認的prototype屬性。
- 若是這個函數被用在建立自定義對象的場景中,咱們稱這個函數爲構造函數。 好比下面一個簡單的場景:
-
-
- function Person(name) {
- this.name = name;
- }
-
- Person.prototype = {
- getName: function() {
- return this.name;
- }
- }
- var zhang = new Person("ZhangSan");
- console.log(zhang.getName());
-
- 做爲類比,咱們考慮下JavaScript中的數據類型 - 字符串(String)、數字(Number)、數組(Array)、對象(Object)、日期(Date)等。 咱們有理由相信,在JavaScript內部這些類型都是做爲構造函數來實現的,好比:
-
- function Array() {
-
- }
-
-
- var arr1 = new Array(1, 56, 34, 12);
-
- var arr2 = [1, 56, 34, 12];
-
- 同時對數組操做的不少方法(好比concat、join、push)應該也是在prototype屬性中定義的。
- 實際上,JavaScript全部的固有數據類型都具備只讀的prototype屬性(這是能夠理解的:由於若是修改了這些類型的prototype屬性,則哪些預約義的方法就消失了), 可是咱們能夠向其中添加本身的擴展方法。
-
- Array.prototype.min = function() {
- var min = this[0];
- for (var i = 1; i < this.length; i++) {
- if (this[i] < min) {
- min = this[i];
- }
- }
- return min;
- };
-
-
- console.log([1, 56, 34, 12].min());
-
-
- 注意:這裏有一個陷阱,向Array的原型中添加擴展方法後,當使用for-in循環數組時,這個擴展方法也會被循環出來。
- 下面的代碼說明這一點(假設已經向Array的原型中擴展了min方法):
- var arr = [1, 56, 34, 12];
- var total = 0;
- for (var i in arr) {
- total += parseInt(arr[i], 10);
- }
- console.log(total);
-
-
- 解決方法也很簡單:
- var arr = [1, 56, 34, 12];
- var total = 0;
- for (var i in arr) {
- if (arr.hasOwnProperty(i)) {
- total += parseInt(arr[i], 10);
- }
- }
- console.log(total);
-
-
-
- constructor
- constructor始終指向建立當前對象的構造函數。好比下面例子:
-
-
- var arr = [1, 56, 34, 12];
- console.log(arr.constructor === Array);
-
- var Foo = function() { };
- console.log(Foo.constructor === Function);
-
- var obj = new Foo();
- console.log(obj.constructor === Foo);
-
-
- console.log(obj.constructor.constructor === Function);
-
-
-
- 可是當constructor遇到prototype時,有趣的事情就發生了。
- 咱們知道每一個函數都有一個默認的屬性prototype,而這個prototype的constructor默認指向這個函數。以下例所示:
-
- function Person(name) {
- this.name = name;
- };
- Person.prototype.getName = function() {
- return this.name;
- };
- var p = new Person("ZhangSan");
-
- console.log(p.constructor === Person);
- console.log(Person.prototype.constructor === Person);
-
- console.log(p.constructor.prototype.constructor === Person);
-
- 當時當咱們從新定義函數的prototype時(注意:和上例的區別,這裏不是修改而是覆蓋), constructor的行爲就有點奇怪了,以下示例:
- function Person(name) {
- this.name = name;
- };
- Person.prototype = {
- getName: function() {
- return this.name;
- }
- };
- var p = new Person("ZhangSan");
- console.log(p.constructor === Person);
- console.log(Person.prototype.constructor === Person);
- console.log(p.constructor.prototype.constructor === Person);
-
- 爲何呢?
- 原來是由於覆蓋Person.prototype時,等價於進行以下代碼操做:
- Person.prototype = new Object({
- getName: function() {
- return this.name;
- }
- });
-
- 而constructor始終指向建立自身的構造函數,因此此時Person.prototype.constructor === Object,便是:
- function Person(name) {
- this.name = name;
- };
- Person.prototype = {
- getName: function() {
- return this.name;
- }
- };
- var p = new Person("ZhangSan");
- console.log(p.constructor === Object);
- console.log(Person.prototype.constructor === Object);
- console.log(p.constructor.prototype.constructor === Object);
-
- 怎麼修正這種問題呢?方法也很簡單,從新覆蓋Person.prototype.constructor便可:
- function Person(name) {
- this.name = name;
- };
- Person.prototype = new Object({
- getName: function() {
- return this.name;
- }
- });
- Person.prototype.constructor = Person;
- var p = new Person("ZhangSan");
- console.log(p.constructor === Person);
- console.log(Person.prototype.constructor === Person);
- console.log(p.constructor.prototype.constructor === Person);
歡迎關注本站公眾號,獲取更多信息