如何在java中创建哈希表的数组列表?

发布于 2024-11-08 12:17:36 字数 191 浏览 0 评论 0原文

我想知道是否可以创建哈希表向量?

我尝试过

java.util.Hashtable<String, String>[] info = new java.util.Hashtable<String, String>();

,但没有运气:(

谢谢。

I would like to know if is it possible to create a vector of hashtables ?

i tried

java.util.Hashtable<String, String>[] info = new java.util.Hashtable<String, String>();

but haven't any luck :(

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

清引 2024-11-15 12:17:36

我想你想要

ArrayList<Hashtable<String, String>> info = new ArrayList<Hashtable<String, String>>();

I think you want

ArrayList<Hashtable<String, String>> info = new ArrayList<Hashtable<String, String>>();
剑心龙吟 2024-11-15 12:17:36

Vector 是一个 ListHashtable 是一个 Map,所以你想要的是一个 Map 列表。

我建议您分别使用 ArrayList 代替 VectorHashMap 代替 Hashtable (如此处讨论和许多其他问题),但大多数全部我建议你改变你的要求。

在大多数情况下,您需要一个列表地图而不是地图列表,如果您这样做,我会使用许多可用的自定义实现之一,首先也是最重要的 Guava 的 Multimap

A Vector is a List, and a Hashtable is a Map, so what you want is a List of Maps.

I'd advise you to use ArrayList instead of Vector and HashMap instead of Hashtable, respectively (as discussed here and in many other questions), but most of all I'd advise you to change your requirements.

In most cases, you'd want a Map of Lists rather than a List of Maps, and if you do, I'd use one of the many custom implementations available, first and foremost Guava's Multimap.

允世 2024-11-15 12:17:36

您可能想要:

ArrayList<Hashtable<String, String>> info =
    new ArrayList<Hashtable<String, String>>();

通过类型推断和 Guava 等库可以稍微简化这一点:

ArrayList<Hashtable<String, String>> info = Lists.newArrayList();

You probably want:

ArrayList<Hashtable<String, String>> info =
    new ArrayList<Hashtable<String, String>>();

This can be simplified somewhat with type inference and a library such as Guava:

ArrayList<Hashtable<String, String>> info = Lists.newArrayList();
铃予 2024-11-15 12:17:36

尝试确保您为正在使用的集合使用尽可能抽象的接口。

List<Map<String, String>> info= new ArrayList<Map<String, String>>();

然后你可以添加你的哈希表

Map<String, String> infoElement= null;
for( something in someOtherThing ) {
    infoElement= new Hashtable<String, String>();
    // add your logic
    info.add(infoElement);
}

Try to make sure you are using as abstract an interface for the collections you are using as possible.

List<Map<String, String>> info= new ArrayList<Map<String, String>>();

Then you can add your hashtables

Map<String, String> infoElement= null;
for( something in someOtherThing ) {
    infoElement= new Hashtable<String, String>();
    // add your logic
    info.add(infoElement);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文