如何从Array中添加SortedSet项?

前端之家收集整理的这篇文章主要介绍了如何从Array中添加SortedSet项?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这样定义的SortedSet:
SortedSet<RatedMessage> messageCollection = new TreeSet<RatedMessage>(new Comp());

我有一个RatedMessage []数组

我必须使用数组,因为集合错过了序列化功能,现在我需要重新构建它.

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

解决方法

Collections.addAll(messageCollection,array);

功能与迈克尔的答案完全相同,但正如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.

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

猜你在找的Java相关文章