gpt4 book ai didi

java - 如何将数组中的项目添加到 SortedSet 中?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:48:04 25 4
gpt4 key购买 nike

我有一个这样定义的 SortedSet:

SortedSet<RatedMessage> messageCollection = new TreeSet<RatedMessage>(new Comp());

我有一组 RatedMessage[]

我不得不使用数组,因为集合缺少序列化功能,现在我需要重新构造它。

有没有一种快速的方法可以将数组中的所有项再次添加到集合中?

最佳答案

Collections.addAll(messageCollection, array);

功能上与 Michael 的回答相同,但正如 javadoc 所说:

Adds all of the specified elements to the specified collection. Elements to be added may be specified individually or as an array. The behavior of this convenience method is identical to that c.addAll(Arrays.asList(elements)), but this method is likely to run significantly faster under most implementations.

关于java - 如何将数组中的项目添加到 SortedSet 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3136632/

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