我试图了解SplitIterator的功能,并遇到以下问题:
public static void main(String[] args) {
Set<Integer> l = new HashSet();
l.add(1);
l.add(2);
l.add(3);
Spliterator<Integer> s= (Spliterator<Integer>) l.spliterator();
Spliterator<Integer> s1=s.trySplit();
while(s1.tryAdvance(n -> {System.out.print(n+" ");System.out.println("estimateSize "+s.estimateSize()+" getexactsizeifknown "+s.getExactSizeIfKnown());}));
为什么方法getexactsizeifknown
为-1
返回HashSet
?
对于其他集合,它返回与estimateSIze()