gpt4 book ai didi

typescript - "Variable is used before being assigned"(TS2454) 没有帮助的模式

转载 作者:行者123 更新时间:2023-12-04 02:01:48 26 4
gpt4 key购买 nike

考虑以下代码模式,

class stuff {
public id: string;
public uid: number;
constructor(parameter: string){
this.id = parameter;
}
public getUID(): number {
return Date.now();
}
}

let ids: number[]; /* 1: Here variable is not assigned */
for ( let i = 0; i < 100; i++){
ids[i] = new stuff(i.toString()).getUID();
/* 2: Here ids[i] is used before initialized */
}

在这样的模式下,typescript 不会用 "strict": true 编译。

我可以做 let ids:number[] | undefined 但这失去了使用 typescript 的值(value)。

是否有任何其他模式可以实现相同的行为?

谢谢。

最佳答案

let ids: number[] = [];
for ( let i = 0; i < 100; i++){
ids.push(new stuff(i.toString()).getUID());
}

关于typescript - "Variable is used before being assigned"(TS2454) 没有帮助的模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46686958/

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