gpt4 book ai didi

typescript - 这是 Typescript 中的字典或哈希表吗?

转载 作者:行者123 更新时间:2023-12-05 01:45:14 25 4
gpt4 key购买 nike

以下代码来自ngrx示例。

这个声明会做什么?这相当于 C# 中的字典或哈希表吗?

let typeCache: { [label: string]: boolean } = {};

原代码:

let typeCache: { [label: string]: boolean } = {};

export function type<T>(label: T | ''): T {
if (typeCache[<string>label]) {
throw new Error(`Action type "${label}" is not unique"`);
}

typeCache[<string>label] = true;

return <T>label;
}

最佳答案

我不确定 C# 是否等效,但它在 typescript 中的意思是具有 bool 属性的常规 javascript 对象,它被称为 Indexable Types .
键只能是字符串或数字,这不会编译:

let typeCache: { [label: Date]: boolean } = {}; // error: An index signature parameter type must be 'string' or 'number'

值的示例:

type Indexable = { [label: string]: boolean };

let typeCache1: Indexable = { a: true, b: false };
let typeCache2: Indexable = { a: true, b: "string" }; // error: Type '{ a: true; b: "string"; }' is not assignable to type 'Indexable'

关于typescript - 这是 Typescript 中的字典或哈希表吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42591107/

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