Collections同步TreeMap的有关问题。

Collections同步TreeMap的问题。。Collections里为什么没有synchronizedNavigableSet?API给了个例子,说你要

Collections同步TreeMap的问题。。
Collections里为什么没有synchronizedNavigableSet?

API给了个例子,说你要想同步TreeMap就这么做:
SortedSet s = Collections.synchronizedSortedSet(new TreeSet(...));

但是我想用NavigableSet接口中的方法,SortedSet没有呀,难道NavigableSet中的方法都不用同步?

[解决办法]
问题解决了?怎么这么快就结贴了
[解决办法]
NavigableSet 继承了SortedSet, SortedSet中的方法是可以被调用
[解决办法]
可以使用 ConcurrentSkipListMap