In Java random integers in range can be produced in many ways. In this post we show how to generate random numbers using Java 8 features!
Continue reading Java random integers in rangejava8
How to generate in Java 8 range of numbers? This is practical problem, often met when writing tests. In this post we’ll cover fast implementation, comfortable, and flexible with Java 8 Streams!
Continue reading Java 8 range of numbersJava interview question: In Java 8 count frequency of chars in a String. In this post we’ll show two implementations – using Map.merge() and Streams and Collectors.
Continue reading Java 8 count frequency of chars in StringIn Java 8 count frequency of numbers/elements/objects. You may encounter this problem on Java job interviews. Here we implement it using Java 8 Collectors.
Continue reading Java 8 count frequency of numbers/elements/objectsVery common task is creation of Map from a List of objects. In this post we show how to use Java 8 to convert List to Map using Collectors.
Continue reading Java 8 List to MapIn this article we present Java 8 forEach on examples. These are very convenient methods for use with Lambda Expressions and method references.
Continue reading Java 8 forEach examplesIn Java Fork Join Framework takes advantage of multiple processors to process divide and conquer algorithms with full power. In this post we’ll show how to start with Fork Join processing.
Continue reading Java Fork Join exampleIn Java int to String conversion can be done in a different ways and converted String can be in different formats. In this post we’ll show on examples how to convert them.
Continue reading Java int to StringJava 8 reduce is a great method to compute a value from stream of values – reduce collection to value. In this post we’ll explain how reduce in Java work.
Continue reading Java 8 reduce by examplejava.util.Optional.map(Function) The method Optional.map(Function) applies the given function to the optional value if it is present and returns an optional with the result or empty optional.
Continue reading Java Util Optional map(Function)