真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

js中this、原型與閉包的案例分析-創(chuàng)新互聯(lián)

這篇文章主要介紹js中this、原型與閉包的案例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)主要從事成都做網(wǎng)站、網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)巍山,10余年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220

1、this關(guān)鍵字

a、有對象指向?qū)ο螅?/p>

b、沒對象指向全局變量(window);

c、有new指向new出的新對象;

d、bind,call&apply改變this的指向;

e、setTimeout/setInterval this指向window;

f、箭頭函數(shù) this 是由函數(shù)定義時候確定的;

var adder = {
  base : 1,
    
  add : function(a) {
    var f = v => v + this.base;
    return f(a);
  },

  addThruCall: function inFun(a) {
    var f = v => v + this.base;
    var b = {
      base : 2
    };
            
    return f.call(b, a);
  }
};
var obj = {
  i: 10,
  b: () => console.log(this.i, this),
  c: function() {
    console.log( this.i, this)
  }
}
obj.b();  // undefined window{...}原型
obj.c();  // 10 Object {...}

2、原型

prototype:

prototype:每一個對象都會在其內(nèi)部初始化一個屬性:即prototype;

原型鏈:當(dāng)我們訪問一個對象的屬性時,如果這個對象內(nèi)部不存在這個屬性,那么就回去__proto__里找這個屬性,這樣一直找下去就是:原型鏈;

instanceof原理是判斷實例對象的__proto__和生成該實例的構(gòu)造函數(shù)的prototype是不是引用的同一個地址。

hasOwnProperty是 JavaScript 中唯一一個處理屬性但是不查找原型鏈的函數(shù)。

js中this、原型與閉包的案例分析

構(gòu)造函數(shù)  ->prototype-> 原型對象 -> constructor -> 構(gòu)造函數(shù)

構(gòu)造函數(shù) -> new -> 實例對象

實例對象 -> __proto__-> 原型對象-> __proto__->原型對象->->null

執(zhí)行上下文

變量聲明與函數(shù)聲明,其作用域會提升到方法體的頂部;

作用域:

a、javascript沒有塊級作用域

b、javascript除了全局作用域之外,只有函數(shù)可以創(chuàng)建的作用域。作用域在函數(shù)定義時就已經(jīng)確定了。而不是在函數(shù)調(diào)用時確定。

閉包:

概念: 內(nèi)部函數(shù)可以訪問外部函數(shù)中的變量;

使用:函數(shù)作為返回值;函數(shù)作為參數(shù);

作用:封裝變量,收斂權(quán)限;

缺點:消耗內(nèi)存

創(chuàng)建對象的方法

對象字面量;

構(gòu)造函數(shù);

立即執(zhí)行函數(shù);

Object.create();

new 對象過程

創(chuàng)建新對象;

this指向這個新對象;

執(zhí)行代碼;

返回this;

類與繼承

類的聲明

function Animal(){
    this.name = 'name';
}
 
// es6 
 
class Animal2{
    constructor(){
        this.name = 'name2';
    }
}

繼承

1.借助構(gòu)造函數(shù)實現(xiàn)繼承

function Parent(){
    this.name = 'parent';
}
 
function Child(){
    Parent.call(this);
    this.type = 'child1';
}

缺點:

部分繼承;

繼承不到父類原型對象上的方法;(只有父類的屬性掛載到子類上了,Child的prototype沒變?yōu)镃hild.prototype繼承不了Parent的prototype)

2.原型鏈繼

function Parent(){
    this.name = 'name';
}
function Child(){
    this.type = 'child';
}
 
Child.prototype = new Parent();

缺點:原型鏈上原型對象是共用的。(原型的屬性修改,所有繼承自該原型的類的屬性都會一起改變)

3.組合方式

function Parent(){
    this.name = 'parent';
}
function Child(){
    Parent.call(this);
    this.type = 'child';
}
Child.prototype = new Parent();

缺點:

父類執(zhí)行函數(shù)執(zhí)行兩次;

constructor指向父類;

function Parent(){
    this.name = 'parent';
}
function Child(){
    Parent.call(this);
    this.type = 'child';
}
Child.prototype = Parent.prototype;

缺點:

子類constructor指向父類

function Parent(){
    this.name = 'parent';
}
function Child(){
    Parent.call(this);
    this.type = 'child';
}
Child.prototype = Object.create(Parent.prototype);
Child.prototype.constructor = Child;

優(yōu)點:

子類的原型指向Object.create(Parent.prototype),實現(xiàn)了子類和父類構(gòu)造函數(shù)的分離,但是這時子類中還是沒有自己的構(gòu)造函數(shù),

所以緊接著又設(shè)置了子類的構(gòu)造函數(shù),由此實現(xiàn)了完美的組合繼承。(也就是把父類的prototype寫入子類的prototype,在定義子類的constructor)

4. es6

class Child extends Parent {
    constructor(){
 
    }
}

以上是js中this、原型與閉包的案例分析的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)網(wǎng)站制作公司行業(yè)資訊頻道!


當(dāng)前文章:js中this、原型與閉包的案例分析-創(chuàng)新互聯(lián)
鏈接URL:http://weahome.cn/article/dhhgpd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部