1. 前置知识
- 原生类型的一些方法处理
- 若对象中定义了
[Symbol.toPrimitive]
这个方法,则[Symbol.toPrimitive]
这个方法比valueOf
和toString
优先级都要高。进行类型转换时,这个方法会被调用,返回原始值。下面的讨论都是默认没有定义[Symbol.toPrimitive]这个方法的。 - 若
[Symbol.toPrimitive]
方法返回的不是基本类型,则会抛出抛出一个TypeError
异常
let obj = {
name: "Lawson",
toString() {
console.log("called toString");
return [];
},
valueOf() {
console.log("called valueOf");
return [];
},
[Symbol.toPrimitive](hint) {
console.log("called toPrimitive");
return null
}
};
console.log(0 === Number(obj));
//called toPrimitive
//true
let obj = {
name: "Lawson",
toString() {
console.log("called toString");
return [];
},
valueOf() {
console.log("called valueOf");
return null;
},
[Symbol.toPrimitive](hint) {
console.log("called toPrimitive");
return []
}
};
console.log(0 === Number(obj));
//called toPrimitive
//Uncaught TypeError: Cannot convert object to primitive value
2. 显式转换
1.1 String
obj.toString()
或String(obj)
1.1.1 Number转String
-
0
和-0
都变成'0'
1.1.2 Object转String
- 若对象有
toString
方法,则调用之 - 若
toString
方法返回的是 基本数据类型 ,则将值转换为【字符串】并返回 - 若对象无
toString
方法或调用toString
方法返回的并不是 基本数据类型,则尝试调用对象的valueOf
方法 - 若对象有
valueOf
方法,则调用之 - 若
valueOf
方法返回的是 基本数据类型,则将值转换为【字符串】并返回 - 以上两个方法都不存在或者都不返回基本数据类型,则会抛出抛出一个
TypeError
异常
let obj = {
name: "Lawson",
toString() {
console.log("called toString");
return null;
},
valueOf() {
console.log("called valueOf");
return null;
},
};
console.log('null' === String(obj));
//called toString
//true
let obj = {
name: "Lawson",
toString() {
console.log("called toString");
return {};//非基本类型
},
valueOf() {
console.log("called valueOf");
return null;
},
};
console.log('null' === String(obj));
//called toString
//called valueOf
//true
let obj = {
name: "Lawson",
toString() {
console.log("called toString");
return {};//非基本类型
},
valueOf() {
console.log("called valueOf");
return {};//非基本类型
},
};
console.log(String(obj));
//called toString
//called valueOf
//Uncaught TypeError: Cannot convert object to primitive value
1.2 Boolean
- 除了空字符串
''
、±0
、null
、udnefined
和NaN
为false
,其他都是true
,包括new Boolean(false)
Boolean('');//false
Boolean(-0);//false
Boolean(null);//false
Boolean(undefined);//false
Boolean(NaN);//false
Boolean([]); //true
Boolean({});//true
Boolean(new Boolean(false));//true
-
!
可以对变量进行Boolean转换并取反
![];//false
!{};//false
!null;//true
!undefined;//true
1.3 Number
1.3.1 String转Number
- 字符串中含有非数字类型字符返回NaN,其他直接转换为对应数字
console.log(Number("abc"));//NaN
console.log(Number("123"));//123
console.log(Number("123abc"));//NaN
console.log(Number("+123"));//123
console.log(Number("-123"));//-123
console.log(Number('-123.45'));//-123.45
- 其他特殊情况
console.log(Number("0xff"));//255
console.log(Number("2E4"));//20000
console.log(Number(""));//0
1.3.2 Boolean转Number
-
true
变1
,false
变0
console.log(Number(new Boolean(false)));//0
console.log(Number(new Boolean(true)));//1
console.log(Number(false));//0
console.log(Number(true));//1
1.3.3 undefined和null
-
undefined
变NaN
,null
变0
console.log(Number(undefined));//NaN
console.log(Number(null));//0
1.3.4 Object转Number
- 若对象有
valueOf
方法,则调用之 - 若
valueOf
方法返回的是 基本数据类型 ,则将值转换为【数字】并返回 - 若对象无
valueOf
方法或调用valueOf
方法返回的并不是 基本数据类型,则尝试调用对象的toString
方法 - 若对象有
toString
方法,则调用之 - 若
toString
方法返回的是 基本数据类型,则将值转换为【数字】并返回 - 以上两个方法都不存在或者都不返回基本数据类型,则会抛出抛出一个
TypeError
异常
let obj = {
name: "Lawson",
toString() {
console.log("called toString");
return null;
},
valueOf() {
console.log("called valueOf");
return null;
},
};
console.log(0 === Number(obj));
//called valueOf
//true
let obj = {
name: "Lawson",
toString() {
console.log("called toString");
return null;
},
valueOf() {
console.log("called valueOf");
return [];
},
};
console.log(0 === Number(obj));
//called valueOf
//called toString
//true
let obj = {
name: "Lawson",
toString() {
console.log("called toString");
return [];
},
valueOf() {
console.log("called valueOf");
return [];
},
};
console.log(Number(obj));
//called valueOf
//called toString
//Uncaught TypeError: Cannot convert object to primitive value
参考文献:
https://blog.csdn.net/jhzhahuaiyu/article/details/96188502
https://www.cnblogs.com/gwf93/p/10295234.html