gpt4 book ai didi

TypeScript - 函数内部没有 "Variable is used before being assigned"

转载 作者:行者123 更新时间:2023-12-03 21:57:46 25 4
gpt4 key购买 nike

我想了解以下 TypeScript 行为:

以下代码

let a: number
if (a === undefined) {
console.log("how?")
}

抛出错误:“变量'a'在被赋值之前被使用。”。

但是下面的代码
let a: number
const f = (): void => {
if (a === undefined) {
console.log("how?")
}
}
f()

工作正常并记录“如何?”。

这是为什么?还有,怎么来 a === undefined如果它的类型是 number ?

最佳答案

有一个 open issue关于这个在 Typescript GitHub 项目中。这是 typescript 技术设计的限制。

来自瑞安卡瓦诺,它是

because we don't inline the flow-control effects of functions

关于TypeScript - 函数内部没有 "Variable is used before being assigned",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61173597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com