![]() |
VOOZH | about |
// Here "c" is any Collection object. splitr is of // type Spliterator interface and refers to "c" Spliterator splitr = c.spliterator();Spliterator interface defines 8 methods:
Syntax : int characteristics() Parameters : NA Returns : Returns the characteristics of the invoking spliterator, encoded into an integer.
Syntax : long estimateSize( ) Parameters : NA Returns : Estimates the number of elements left to iterate and returns the result. Returns Long.MAX_VALUE if the count cannot be obtained for any reason.
Syntax : default long getExactSizeIfKnown( ) Parameters : NA Returns : If the invoking spliterator is SIZED, returns the number of elements left to iterate. Returns –1 otherwise.
Syntax : default Comparator<? super T> getComparator( ) Parameters : NA Returns : Returns the comparator used by the invoking spliterator or null if natural ordering is used. Throws: IllegalStateException - If the sequence is unordered, IllegalStateException is thrown.
Syntax : default boolean hasCharacteristics(int val) Parameters : characteristics - the characteristics to check for Returns : Returns true if the invoking spliterator has the characteristics passed in val. Returns false otherwise.
Syntax : boolean tryAdvance(Consumer<? super T> action) Parameters : action - The action Returns : Returns true if there is a next element. Returns false if no elements remain. Throws : NullPointerException - if the specified action is null
Syntax : default void forEachRemaining(Consumer<? super T>action) Parameters : action - The action Returns : NA Throws : NullPointerException - if the specified action is null
Syntax : Spliterator<T> trySplit( ) Parameters : NA Returns : a Spliterator covering some portion of the elements, or null if this spliterator cannot be split
estimate size : 5 exact size : 5 true Content of arraylist : 1 2 -3 -4 5 Output from splitr2: 1 2 Output from splitr1: -3 -4 5
Java program for tryadvance method
Have a look at tryAdvance() method.It performs an action on the next element and then advances the iterator. It is shown here:boolean tryAdvance(Consumer<? super T> action)Here, action specifies the action that is executed on the next element in the iteration and Consumer is a functional interface that applies an action to an object. It is a generic functional interface declared in java.util.function. It has only one abstract method, accept( ), which is shown here:
void accept(T objRef)here T is type of object reference. For implementing our action, we must implement accept method.To implement accept method, here we use lambda expression .This will be more clear from below example. How to use Spliterator with Collections: Using Spliterator for basic iteration tasks is quite easy, simply call tryAdvance( ) until it returns false.
Contents of arraylist: 1 2 -3 -4 5 Absolute values of contents of arraylist: 1 2 3 4 5Notice how tryAdvance( ) consolidates the purposes of hasNext( ) and next( ) provided by Iterator into a single method in above example. This improves the efficiency of the iteration process. In some cases, you might want to perform some action on each element collectively, rather than one at a time. To handle this type of situation, Spliterator provides the forEachRemaining( ) method, it is generally used in cases involving streams. This method applies action to each unprocessed element and then returns.