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中可以进行哪些更改以使输出“字符串”?
答案 0 :(得分:0)
TypeScript类型以及所有类型断言在运行时被擦除;它们仅由编译器用来证明您的代码正确。在转译的JavaScript中,前三种情况看起来相同:
console.log(typeof(message3));
和typeof(message3)
是未定义的,因为...好吧,您尚未将其定义为任何东西,就像在纯JS中一样:它不知道变量的类型< / em>,重要的是里面的 value 的类型,值是undefined
。