Tag: Core Java

Spliterators in Java8

With JDK 8 came many new changes and additions. One of these additions is the Spliterator interface which provides more functionality than the Iterator or the ListIterator interfaces.
Read More

Integer and Long Wrapper Classes in Java

We have already explored the abstract class Number in the previous tutorial, which defines the super-class implemented by classes that wrap or encapsulate the numeric types like byte, short, int, long float, and double. In this
Read More