TypeOf和断言

时间:2018-09-21 10:01:56

标签: typescript ecmascript-6 assertion typeof

let message3;
console.log(typeof((<string>message3)));  //Output case1: undefined
console.log(typeof((message3 as string)));//Output case2: undefined
console.log(typeof((message3 as "ABC"))); //Output case3: undefined
console.log(typeof((message3 = "ABC")));  //Output case4: string

在上述情况下,情况1-3为什么不起作用,并像情况4一样以字符串形式输出。

问题1:为什么案例1-3显示“未定义”?

问题2:在情况1-3中可以进行哪些更改以使输出“字符串”?

1 个答案:

答案 0 :(得分:0)

TypeScript类型以及所有类型断言在运行时被擦除;它们仅由编译器用来证明您的代码正确。在转译的JavaScript中,前三种情况看起来相同:

console.log(typeof(message3));

typeof(message3)是未定义的,因为...好吧,您尚未将其定义为任何东西,就像在纯JS中一样:它不知道变量的类型< / em>,重要的是里面的 value 的类型,值是undefined