详解JavaScript中typeof与instanceof用法
今天写js代码,遇到动态生成多个名称相同的input复选按钮
需要判断其是否是数组,用到了if (typeof(document.mapcheckmgr.checkid)!="undefined")
以前用得少,就顺便查了一下关于typeof的那些事
typeof用以获取一个变量或者表达式的类型,typeof一般只能返回如下几个结果:
number,boolean,string,function(函数),object(null,数组,对象),undefined。
如:
alert(typeof (123));//typeof(123)返回"number" alert(typeof ("123"));//typeof("123")返回"string"
我们可以使用typeof来获取一个变量是否存在,如if(typeof a!="undefined"){}
,而不要去使用if(a)因为如果a不存在(未声明)则会出错,
正因为typeof遇到null,数组,对象时都会返回object类型,所以当我们要判断一个对象是否是数组时
或者判断某个变量是否是某个对象的实例则要选择使用另一个关键语法instanceof
instanceof用于判断一个变量是否某个对象的实例,如var a=new array();alert(a instanceof array);
会返回true,
同时alert(a instanceof object)
也会返回true;这是因为array是object的子类。
再如:function test(){};var a=new test();alert(a instanceof test)
会返回true。
<script> var str = new string(); function show(str1){ if(str1 instanceof string){ alert('1'); }else{ alert('0'); } } show(str); str = "abccddd"; if(typeof str=='string'){alert(str);} else{alert('0');} </script>
关于typeof
typeof一元运算符,用来返回操作数类型的字符串。
typeof几乎不可能得到它们想要的结果。typeof只有一个实际应用场景,就是用来检测一个对象是否已经定义或者是否已经赋值。而这个应用却不是来检查对象的类型。
value | class | type |
---|---|---|
"foo" | string | string |
new string("foo") | string | object |
1.2 | number | number |
new number(1.2) | number | object |
true | boolean | boolean |
new boolean(true) | boolean | object |
new date() | date | object |
new error() | error | object |
[1,2,3] | array | object |
new array(1, 2, 3) | array | object |
new function("") | function | function |
/abc/g | regexp | object (function in nitro/v8) |
new regexp("meow") | regexp | object (function in nitro/v8) |
{} | object | object |
new object() | object | object |
上面表格中,type 一列表示 typeof 操作符的运算结果。可以看到,这个值在大多数情况下都返回 "object"。
class 一列表示对象的内部属性 [[class]] 的值。
javascript 标准文档中定义: [[class]] 的值只可能是下面字符串中的一个: arguments, array, boolean, date, error, function, json, math, number, object, regexp, string.
为了获取对象的 [[class]],我们需要使用定义在 object.prototype 上的方法 tostring。
对象的类定义
javascript 标准文档只给出了一种获取 [[class]] 值的方法,那就是使用 object.prototype.tostring。
function is(type, obj) { var clas = object.prototype.tostring.call(obj).slice(8, -1); return obj !== undefined && obj !== null && clas === type; } is('string', 'test'); // true is('string', new string('test')); // true
上面例子中,object.prototype.tostring
方法被调用,this 被设置为了需要获取 [[class]] 值的对象。
注:object.prototype.tostring 返回一种标准格式字符串,所以上例可以通过 slice 截取指定位置的字符串,如下所示:
object.prototype.tostring.call([]) // "[object array]" object.prototype.tostring.call({}) // "[object object]" object.prototype.tostring.call(2) // "[object number]"
注:这种变化可以从 ie8 和 firefox 4 中看出区别,如下所示:
// ie8 object.prototype.tostring.call(null) // "[object object]" object.prototype.tostring.call(undefined) // "[object object]" // firefox 4 object.prototype.tostring.call(null) // "[object null]" object.prototype.tostring.call(undefined) // "[object undefined]"
测试为定义变量
typeof foo !== 'undefined'
上面代码会检测 foo 是否已经定义;如果没有定义而直接使用会导致 referenceerror 的异常。 这是 typeof 唯一有用的地方。
结论
为了检测一个对象的类型,强烈推荐使用 object.prototype.tostring 方法; 因为这是唯一一个可依赖的方式。正如上面表格所示,typeof 的一些返回值在标准文档中并未定义, 因此不同的引擎实现可能不同。
除非为了检测一个变量是否已经定义,我们应尽量避免使用 typeof 操作符。
x | typeof x |
---|---|
undefined | "undefined" |
true 或false | "boolean" |
任意数字或者nan | "number" |
任意字符串 | "string" |
函数对象(在ecma-262术语中,指的是实现了[[call]] 的对象) | "function" |
任意内置对象(非函数) | "object" |
数组 | "obeject" |
null | "object" |
宿主对象(js引擎内置对象,而不是dom或者其他提供的) | 由编译器各自实现的字符串,但不是"undefined","number","boolean","number","string"。 |
正则表达式 | 各浏览器表现不一 |
如果想将null和对象区分开,则必须针对特殊值显式检测。如:my_value===null。对于宿主对象来说,typeof有可能并不返回‘object',而返回字符串。但实际上客户端js中的大多数宿主对象都是‘object'类型。对于所有内置可执行对象进行typeof运算都将返回“function”。
// numbers typeof 37 === 'number'; typeof 3.14 === 'number'; typeof math.ln2 === 'number'; typeof infinity === 'number'; typeof nan === 'number'; // 尽管nan是"not-a-number"的缩写,意思是"不是一个数字" typeof number(1) === 'number'; // 不要这样使用! // strings typeof "" === 'string'; typeof "bla" === 'string'; typeof (typeof 1) === 'string'; // typeof返回的肯定是一个字符串 typeof string("abc") === 'string'; // 不要这样使用! // booleans typeof true === 'boolean'; typeof false === 'boolean'; typeof boolean(true) === 'boolean'; // 不要这样使用! // undefined typeof undefined === 'undefined'; typeof blabla === 'undefined'; // 一个未定义的变量,或者一个定义了却未赋初值的变量 // objects typeof {a:1} === 'object'; typeof [1, 2, 4] === 'object'; // 使用array.isarray或者object.prototype.tostring.call方法 //可以分辨出一个数组和真实的对象 typeof new date() === 'object'; typeof new boolean(true) === 'object' // 令人困惑.不要这样使用 typeof new number(1) === 'object' // 令人困惑.不要这样使用 typeof new string("abc") === 'object'; // 令人困惑.不要这样使用 // functions typeof function(){} === 'function'; typeof math.sin === 'function';
关于instanceof
instanceof 左操作数是一个类,右操作数是标识对象的类。如果左侧的对象是右侧类的实例,则返回true.而js中对象的类是通过初始化它们的构造函数来定义的。即instanceof的右操作数应当是一个函数。所有的对象都是object的实例。如果左操作数不是对象,则返回false,如果右操作数不是函数,则抛出typeerror。
instanceof 运算符是用来测试一个对象是否在其原型链原型构造函数的属性。其语法是object instanceof constructor
instanceof 操作符用来比较两个操作数的构造函数。只有在比较自定义的对象时才有意义。 如果用来比较内置类型,将会和 typeof 操作符 一样用处不大。
比较自定义对象
function foo() {} function bar() {} bar.prototype = new foo(); new bar() instanceof bar; // true new bar() instanceof foo; // true // 如果仅仅设置 bar.prototype 为函数 foo 本身,而不是 foo 构造函数的一个实例 bar.prototype = foo; new bar() instanceof foo; // false
instanceof 比较内置类型
new string('foo') instanceof string; // true new string('foo') instanceof object; // true 'foo' instanceof string; // false 'foo' instanceof object; // false
有一点需要注意,instanceof 用来比较属于不同 javascript 上下文的对象(比如,浏览器中不同的文档结构)时将会出错, 因为它们的构造函数不会是同一个对象。
结论:instanceof 操作符应该仅仅用来比较来自同一个 javascript 上下文的自定义对象。 正如 typeof 操作符一样,任何其它的用法都应该是避免的。
function c(){} // defining a constructor function d(){} // defining another constructor var o = new c(); o instanceof c; // true, because: object.getprototypeof(o) === c.prototype o instanceof d; // false, because d.prototype is nowhere in o's prototype chain o instanceof object; // true, because: c.prototype instanceof object // true c.prototype = {}; var o2 = new c(); o2 instanceof c; // true o instanceof c; // false, because c.prototype is nowhere in o's prototype chain anymore d.prototype = new c(); // use inheritance var o3 = new d(); o3 instanceof d; // true o3 instanceof c; // true var mystring = new string(); var mydate = new date(); mystring instanceof string; // returns true mystring instanceof object; // returns true mystring instanceof date; // returns false mydate instanceof date; // returns true mydate instanceof object; // returns true mydate instanceof string; // returns false function car(make, model, year) { this.make = make; this.model = model; this.year = year; } var mycar = new car("honda", "accord", 1998); var a = mycar instanceof car; // returns true var b = mycar instanceof object; // returns true
总结
以上所述是小编给大家介绍的javascript中typeof与instanceof用法 ,希望对大家有所帮助
上一篇: 简述vue状态管理模式之vuex
下一篇: 土豆是蔬菜吗,你知道答案吗
推荐阅读
-
详解JavaScript编程中的window与window.screen对象
-
详解JavaScript中typeof与instanceof用法
-
JavaScript中的Math.LN2属性用法详解
-
对python 多线程中的守护线程与join的用法详解
-
node.js中express中间件body-parser的介绍与用法详解
-
Javascript中return的使用与闭包详解
-
简单掌握JavaScript中const声明常量与变量的用法
-
JavaScript编程中window的location与history对象详解
-
Java中抽象类用法与注意点实例详解
-
详解JavaScript中this关键字的用法