OnJava8-Examples/streams/FunctionMap3.java

29 lines
808 B
Java
Raw Normal View History

// streams/FunctionMap3.java
// (c)2021 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
// Producing numeric output streams
import java.util.*;
import java.util.stream.*;
class FunctionMap3 {
public static void main(String[] args) {
Stream.of("5", "7", "9")
.mapToInt(Integer::parseInt)
2015-11-14 16:18:05 -08:00
.forEach(n -> System.out.format("%d ", n));
System.out.println();
Stream.of("17", "19", "23")
.mapToLong(Long::parseLong)
2015-11-14 16:18:05 -08:00
.forEach(n -> System.out.format("%d ", n));
System.out.println();
Stream.of("17", "1.9", ".23")
.mapToDouble(Double::parseDouble)
2015-11-14 16:18:05 -08:00
.forEach(n -> System.out.format("%f ", n));
}
}
/* Output:
2015-11-14 16:18:05 -08:00
5 7 9
17 19 23
17.000000 1.900000 0.230000
*/