28 HashSet和TreeSet

2020-05-04  本文已影响0人  张力的程序园

问题

HashSet和TreeSet有什么不同

答案

Set s = Collections.synchronizedSet(new HashSet(...));
 SortedSet s = Collections.synchronizedSortedSet(new TreeSet(...));
上一篇 下一篇

猜你喜欢

热点阅读