ts中是否有字典?如何使用?
时间: 2024-05-06 16:20:38 浏览: 134
Dictionary.ts
在 TypeScript 中,字典通常指代的是键值对对象,也就是 JavaScript 中的对象。可以像使用对象一样使用字典,例如:
```typescript
const dict: {[key: string]: number} = {
'one': 1,
'two': 2,
'three': 3
};
console.log(dict['one']); // 1
console.log(dict['four']); // undefined
```
其中,`{[key: string]: number}` 表示字典的类型,它是一个键为字符串、值为数字的对象类型。在 TypeScript 中,可以使用这种方式定义任意类型的字典。
阅读全文