spliterator() method in java code example
Example 1: what's a spliterator in java
public interface Spliterator<T>
An object for traversing and partitioning elements of a source. The source of elements covered by a Spliterator could be, for example, an array, a Collection, an IO channel, or a generator function.
A Spliterator may traverse elements individually (tryAdvance()) or sequentially in bulk (forEachRemaining()).
Example 2: split method in java
public class SplitExample2 {
public static void main(String args[])
{
String str = "My name is Chaitanya";
String[] arr = str.split(" ");
for (String s : arr)
System.out.println(s);
}
}