有没有办法在我的代码中使用Typescript.Collections.HashTable?

前端之家收集整理的这篇文章主要介绍了有没有办法在我的代码中使用Typescript.Collections.HashTable?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Typescript编译器的代码中看到了“HashTable”的实现(在文件src / compiler / core / hashTable.ts中).

你知道有没有办法直接在我的Typescript项目中使用它?

解决方法

您可以通过定义接口来实现一个非常简单的哈希表,其中键是一个字符串
class Person {
    name: string;
}

interface HashTable<T> {
    [key: string]: T;
}

var persons: HashTable<Person> = {};
persons["bob"] = new Person();
var bob = persons["bob"];

它只能键入字符串或数字.

原文链接:https://www.f2er.com/java/120622.html

猜你在找的Java相关文章