-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Java 9 Concurrency Cookbook, Second Edition
By :

Some of the most useful intermediate operations you can use with streams are those that allow you to transform the elements of the stream. These operations receive elements of a class and return the elements of a different class. You can even change the type of stream and generate an IntStream
, LongStream
, or DoubleStream
from Stream
.
In this recipe, you will learn how to use the transforming intermediate operations provided by the Stream
class to convert its elements into a different class.
The example of this recipe has been implemented using the Eclipse IDE. If you use Eclipse or other IDE such as NetBeans, open it and create a new Java project.
Follow these steps to implement the example:
Person
class, which stores the basic attributes of a person, and the PersonGenerator
class, which generates a List
of random Person
objects. Please...