在src/core/instance/index.js中app
if (process.env.NODE_ENV !== 'production' && !(this instanceof Vue) ) { warn('Vue is a constructor and should be called with the `new` keyword') }
這裏經過this instanceof Vue來判斷有沒有用new關鍵詞調用,爲何能夠這麼判斷?咱們分別瞭解一下this和instanceof的用法函數
在 JavaScript 中,this 是動態綁定,或稱爲運行期綁定的,它能夠是全局對象、當前對象或者任意對象,這取決於函數的調用方式。函數的調用有如下幾種方式:做爲對象方法調用,做爲函數調用,做爲構造函數調用,和使用 apply 或 call 調用。this
一、做爲對象方法調用lua
var point = { x : 0, y : 0, moveTo : function(x, y) { this.x = this.x + x; this.y = this.y + y; } };
point.moveTo(1, 1)//this 綁定到當前對象,即 point 對象prototype
二、做爲函數調用翻譯
function makeNoSense(y) { this.x = y; } makeNoSense(5); x;// 調用函數的對象是window,因此x 已經成爲一個值爲 5 的全局變量
下面,咱們看另外一種狀況code
var point = { x : 0, y : 0, moveTo : function(x, y) { // 內部函數 var moveX = function(x) { this.x = x;//this 綁定到了哪裏? }; // 內部函數 var moveY = function(y) { this.y = y;//this 綁定到了哪裏? }; moveX(x); moveY(y); } }; point.moveTo(1, 1); point.x; //==>0 point.y; //==>0 x; //==>1 y; //==>1
this除了指向它的直接調用者外,還有一種狀況就是若是沒有明確的調用對象的時候,將對函數的this使用默認綁定:綁定到全局的window對象。對象
三、做爲構造函數調用繼承
function Point(x, y){ this.x = x; this.y = y; } var test = new Point(1, 2)
咱們須要理解的是,new運算符作了什麼:ip
第一步: 建立一個空的對象,{}。 第二步: 連接該對象(即設置該對象的構造函數)到另外一個對象,即o.\__proto__ == Point.prototype。 第三步: 將步驟1新建立的對象做爲this的上下文 第四步: 若是該函數沒有返回對象,則返回this
四、使用 apply 或 call 調用
apply和call能夠切換函數執行的上下文環境(context)
function add(x, y) { console.log(x + y) } function del(x, y) { console.log(x - y) } add.call(del, 3, 1) // 4
一、一般來說,使用 instanceof 就是判斷一個實例是否屬於某種類型,好比:
// 判斷 foo 是不是 Foo 類的實例 function Foo(){} var foo = new Foo(); console.log(foo instanceof Foo)//true
二、另外,更重要的一點是 instanceof 能夠在繼承關係中用來判斷一個實例是否屬於它的父類型。例如:
// 判斷 foo 是不是 Foo 類的實例 , 而且是不是其父類型的實例 function Aoo(){} function Foo(){} Foo.prototype = new Aoo();//JavaScript 原型繼承 var foo = new Foo(); console.log(foo instanceof Foo)//true console.log(foo instanceof Aoo)//true
上面的代碼中是判斷了一層繼承關係中的父類,在多層繼承關係中,instanceof 運算符一樣適用。
三、ECMAScript中instanceof的定義
11.8.6 The instanceof operator
The production RelationalExpression:
RelationalExpression instanceof ShiftExpression is evaluated as follows: 1. Evaluate RelationalExpression. 2. Call GetValue(Result(1)).// 調用 GetValue 方法獲得 Result(1) 的值,設爲 Result(2) 3. Evaluate ShiftExpression. 4. Call GetValue(Result(3)).// 同理,這裏設爲 Result(4) 5. If Result(4) is not an object, throw a TypeError exception.// 若是 Result(4) 不是 object, //拋出異常 /* 若是 Result(4) 沒有 [[HasInstance]] 方法,拋出異常。規範中的全部 [[...]] 方法或者屬性都是內部的, 在 JavaScript 中不能直接使用。而且規範中說明,只有 Function 對象實現了 [[HasInstance]] 方法。 因此這裏能夠簡單的理解爲:若是 Result(4) 不是 Function 對象,拋出異常 */ 6. If Result(4) does not have a [[HasInstance]] method, throw a TypeError exception. // 至關於這樣調用:Result(4).[[HasInstance]](Result(2)) 7. Call the [[HasInstance]] method of Result(4) with parameter Result(2). 8. Return Result(7). // 相關的 HasInstance 方法定義 15.3.5.3 [[HasInstance]] (V) Assume F is a Function object.// 這裏 F 就是上面的 Result(4),V 是 Result(2) When the [[HasInstance]] method of F is called with value V, the following steps are taken: 1. If V is not an object, return false.// 若是 V 不是 object,直接返回 false 2. Call the [[Get]] method of F with property name "prototype".// 用 [[Get]] 方法取 // F 的 prototype 屬性 3. Let O be Result(2).//O = F.[[Get]]("prototype") 4. If O is not an object, throw a TypeError exception. 5. Let V be the value of the [[Prototype]] property of V.//V = V.[[Prototype]] 6. If V is null, return false. // 這裏是關鍵,若是 O 和 V 引用的是同一個對象,則返回 true;不然,到 Step 8 返回 Step 5 繼續循環 7. If O and V refer to the same object or if they refer to objects joined to each other (section 13.1.2), return true. 8. Go to step 5.
翻譯成 JavaScript 代碼以下所示:
function instance_of(L, R) {//L 表示左表達式,R 表示右表達式 var O = R.prototype;// 取 R 的顯示原型 L = L.__proto__;// 取 L 的隱式原型 while (true) { if (L === null) return false; if (O === L)// 這裏重點:當 O 嚴格等於 L 時,返回 true return true; L = L.__proto__; } }
從代碼中咱們能夠看到,instanceof是比較左側的__proto__(隱式原型)和右側的prototype(顯示原型)是否相等,若是不相等,取左側__proto__的__proto__,依次循環比較,直到取到Object.prototype.__proto__即null爲止。有關__proto__和prototype請查看我這篇博客
回到主題,this instanceof Vue咱們能夠這麼分解:this.__proto__和Vue.prototype
this指向window,結果爲false。
回到上面做爲構造函數調用:
第一步: 建立一個空的對象,vat o = {}。 第二步: 連接該對象(即設置該對象的構造函數)到另外一個對象,即o.\__proto__ == Vue.prototype。 第三步: 將步驟1新建立的對象做爲this的上下文 第四步: 若是該函數沒有返回對象,則返回this
因此,結果能夠看作這樣:
o.\__proto__ == this.\__proto__ == Vue.prototype
因此若是用new操做符的話,this instanceof Vue結果爲true。