如何在 Android 上用 Java 创建 Multimap

发布于 2024-10-01 00:59:05 字数 172 浏览 3 评论 0 原文

我在哪里可以找到 Java 的 multimap 实现,它可以在 Android 上运行,而无需包含任何其他类等。我发现的实现都需要其他东西,而这些东西又需要其他东西,而且很快就会变得混乱。我正在从 C++ 移植一个项目,并且是 java 的新手(也是这个项目,所以我试图在使其工作时尽可能保持相同),因此任何参考或示例都会很棒。

Where can I find an implementation of multimap for Java that will work on Android without having to include any other classes etc. The implementations I've found all require other things which require other things and it gets messy quick. I'm porting a project from C++ and am new to java (and this project as well so I'm trying to keep things as identical as possible while getting it working) so any references or examples would be great.

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

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

发布评论

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

评论(3

以往的大感动 2024-10-08 00:59:05

您可以使用映射和列表来创建多重映射。假设您想要将整数与类类型 T 的列表关联起来。请使用以下代码:

Map> myMultiMap = new HashMap>();

它可能会变得混乱,但是,这应该会给你你正在寻找的东西。

另一种选择是使用 Guava 库的 Multimap 实现。

You could use a Map and a List to create a multimap. Say you wanted to associate an integer with a list of class type T. Use the following code:

Map<Integer, List<T>> myMultiMap = new HashMap<Integer, List<T>>();

It could get messy but, this should give you what you're looking for.

Another option is to use the Guava library's Multimap implementations.

旧城空念 2024-10-08 00:59:05

您似乎正在寻找 Apache Commons Collection 库。那里有一个 MultiMap 类。我还没有亲自测试过它,所以我不能保证它有效,但它看起来很适合您的项目。

在 Java 中找不到 MultiMap 函数,因此其他人编写了包含它的库。不过,如果您的知识水平足够高,但需要一些 Java 经验,您可以尝试自己实现它。因此,最好的选择是尝试学习如何使用它们,并在必要时调整库以便在 Android 上使用它们。

It looks like you are looking for Apache Commons Collection library. There you have a MultiMap class. I haven't tested it myself yet so I can't promise it works but it just looks about right for your project.

You won't find a MultiMap function in Java hence others have written libraries containing it. You can however try to implement it yourself if you're knowledge-level is high enough but that'd require some Java experience. So your best bet is to try to learn how to use and if necessary adapt libraries for using them on Android.

你列表最软的妹 2024-10-08 00:59:05

如果您关心代码大小,我们刚刚将多重映射添加到我们的实用程序库中:
http://greenrobot.org/2015/12/ 11/multimaps-in-greenrobot-common-2-2/

该 jar 远低于 100k,如果考虑到 Android 的 65K 方法限制,这很好。

If you care about code size, we just added multimaps to our utility library:
http://greenrobot.org/2015/12/11/multimaps-in-greenrobot-common-2-2/

The jar is way below 100k, which is nice if you consider Android's 65K method limit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文