在 JavaScript 中,判斷變數的型別嘗嘗會用 typeof 運算符,在使用 typeof 運算子時採用引用型別儲存值會出現一個問題,無論引用的是什麼類型的對象,它都會傳回 “object”。這就需要用到instanceof來偵測某個物件是不是另一個物件的實例。
通常來講,使用 instanceof 就是判斷一個實例是否屬於某種類型。
另外,更重的一點是 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 運算子同樣適用。
instanceof 複雜用法
程式碼如下:Cat.prototype = {}
function Dog(){}
Dog.prototype ={}
var dog1 = new Dog();
alert(dog1 instanceof Dog);//true
alert(dog1 instanceof Object);//true
Dog.prototype = Cat.prototype;
alert(dog1 instanceof Dog);//false
alert(dog1 instanceof Cat);//false
alert(dog1 instanceof Object);//true;
var dog2= new Dog();
alert(dog2 nceinsta Dog) ;//true
alert(dog2 instanceof Cat);//true
alert(dog2 instanceof Object);//true
Dog.prototype = null;
var dog3 = new Dog ();
alert(dog3 instanceof Cat);//false
alert(dog3 instanceof Object);//true
alert(dog3 instanceof Dog);//error
要從根本上了解instanceof 的奧秘,需要從兩個方面著手:1,語言規範中是如何定義這個運算符的。 2,JavaScript 原型繼承機。大家有興趣的可以去查看相關資料。