$show=/label

Java 8 Stream mapToInt(ToIntFunction) Method Examples | Convert Stream to IntStream

SHARE:

A quick practical example to Java 8 Stream API mapToInt() Method and how to convert Stream to IntStream. Syntax: IntStream mapToInt​(ToIntFunction; mapper).

1. Overview


In this java 8 Streams series, We'll learn today what is Stream API mapToInt() method and when to use this. This method is used to convert the Stream to IntStream. Let us see it's syntax and few examples on mapToInt() method. This is also part of intermediate operations such as map() and filter() methods.

Java 8 Stream mapToInt(ToIntFunction) Method Examples | Convert Stream to IntStream






2. Syntax

IntStream mapToInt​(ToIntFunction<? super T> mapper)

Returns an IntStream consisting of the results of applying the given function to the elements of this stream.

3. Stream mapToInt Examples


We will see now a few working examples using filter(), map(), forEach(), mapToInt() methods.

3.1 Finding the length of each string a collection


package com.java.w3schools.blog.java.program.to.java8.datetime;

import java.util.stream.IntStream;
import java.util.stream.Stream;

public class StreamMapToIntExample1 {

 public static void main(String[] args) {

  String[] stringArray = { "java", "program", "to", "com", "w3schools" };

  // convert string array to Stream
  Stream<String> stringStream = Stream.of(stringArray);

  IntStream intStream = stringStream.mapToInt(value -> value.length());

  intStream.forEach(s -> System.out.println(s));

 }

}

Output:


4
7
2
3
9

3.2 Sleeping 1 second in processing and adding each value into List


package com.java.w3schools.blog.java.program.to.java8.stream;

import java.util.ArrayList;
import java.util.List;
import java.util.stream.IntStream;
import java.util.stream.Stream;

public class StreamMapToIntExample2 {

 public static void main(String[] args) {

  List<Integer> lengths = new ArrayList<>();

  String[] stringArray = { "java", "program", "to", "com", "w3schools" };

  // convert string array to Stream
  Stream<String> stringStream = Stream.of(stringArray).peek(StreamMapToIntExample2::doSleeo);

  IntStream intStream = stringStream.mapToInt(value -> value.length());

  intStream.forEach(lengths::add);

  lengths.forEach(n -> System.out.println(n));

 }

 private static void doSleeo(String value) {

  try {
   System.out.println("Sleeping for a second");
   Thread.sleep(1000);
  } catch (InterruptedException e) {
   e.printStackTrace();
  }
 }

}

Output:

Sleeping for a second
Sleeping for a second
Sleeping for a second
Sleeping for a second
Sleeping for a second
4
7
2
3
9

3.3 Getting Student Ages into a List<Integer>


package com.java.w3schools.blog.java.program.to.java8.stream;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.stream.IntStream;

public class StreamMapToIntExample3 {

 public static void main(String[] args) {

  List<Student> students = new ArrayList<>();
  students.add(new Student(100, "Nani", 30));
  students.add(new Student(101, "priyanka arul", 25));
  students.add(new Student(102, "mohan", 35));
  students.add(new Student(103, "vikram kumar", 45));

  IntStream ageStream = students.stream().parallel().mapToInt(s -> s.getAge());

  List<Integer> ages = Collections.synchronizedList(new ArrayList<>());

  ageStream.forEach(ages::add);

  ages.forEach(age -> System.out.println(age));
 }

}

class Student {

 private int id;
 private String name;
 private int age;

 public Student(int id, String name, int age) {
  super();
  this.id = id;
  this.name = name;
  this.age = age;
 }

 public int getId() {
  return id;
 }

 public void setId(int id) {
  this.id = id;
 }

 public String getName() {
  return name;
 }

 public void setName(String name) {
  this.name = name;
 }

 public int getAge() {
  return age;
 }

 public void setAge(int age) {
  this.age = age;
 }

 @Override
 public String toString() {
  return "Student [id=" + id + ", name=" + name + ", age=" + age + "]";
 }

}

Output:

Here we have used a parallel() method on stream. So output can not be expected in order. Every time you execute the above program, you will see the different order of ages.


35
45
25
30

4. Conclusion


In this article, We've seen how to convert a Stream to IntStream using mapToInt() method. This method is part of the java 8 Stream API. And also shown 3 working examples on this method.


COMMENTS

BLOGGER

About Us

Author: Venkatesh - I love to learn and share the technical stuff.
Name

accumulo,1,ActiveMQ,2,Adsense,1,API,37,ArrayList,18,Arrays,24,Bean Creation,3,Bean Scopes,1,BiConsumer,1,Blogger Tips,1,Books,1,C Programming,1,Collection,8,Collections,37,Collector,1,Command Line,1,Comparator,1,Compile Errors,1,Configurations,7,Constants,1,Control Statements,8,Conversions,6,Core Java,149,Corona India,1,Create,2,CSS,1,Date,3,Date Time API,38,Dictionary,1,Difference,2,Download,1,Eclipse,3,Efficiently,1,Error,1,Errors,1,Exceptions,8,Fast,1,Files,17,Float,1,Font,1,Form,1,Freshers,1,Function,3,Functional Interface,2,Garbage Collector,1,Generics,4,Git,9,Grant,1,Grep,1,HashMap,2,HomeBrew,2,HTML,2,HttpClient,2,Immutable,1,Installation,1,Interview Questions,6,Iterate,2,Jackson API,3,Java,32,Java 10,1,Java 11,6,Java 12,5,Java 13,2,Java 14,2,Java 8,128,Java 8 Difference,2,Java 8 Stream Conversions,4,java 8 Stream Examples,12,Java 9,1,Java Conversions,14,Java Design Patterns,1,Java Files,1,Java Program,3,Java Programs,114,Java Spark,1,java.lang,4,java.util. function,1,JavaScript,1,jQuery,1,Kotlin,11,Kotlin Conversions,6,Kotlin Programs,10,Lambda,2,lang,29,Leap Year,1,live updates,1,LocalDate,1,Logging,1,Mac OS,3,Math,1,Matrix,6,Maven,1,Method References,1,Mockito,1,MongoDB,3,New Features,1,Operations,1,Optional,6,Oracle,5,Oracle 18C,1,Partition,1,Patterns,1,Programs,1,Property,1,Python,2,Quarkus,1,Read,1,Real Time,1,Recursion,2,Remove,2,Rest API,1,Schedules,1,Serialization,1,Servlet,2,Sort,1,Sorting Techniques,8,Spring,2,Spring Boot,23,Spring Email,1,Spring MVC,1,Streams,31,String,61,String Programs,28,String Revese,1,StringBuilder,1,Swing,1,System,1,Tags,1,Threads,11,Tomcat,1,Tomcat 8,1,Troubleshoot,26,Unix,3,Updates,3,util,5,While Loop,1,
ltr
item
JavaProgramTo.com: Java 8 Stream mapToInt(ToIntFunction) Method Examples | Convert Stream to IntStream
Java 8 Stream mapToInt(ToIntFunction) Method Examples | Convert Stream to IntStream
A quick practical example to Java 8 Stream API mapToInt() Method and how to convert Stream to IntStream. Syntax: IntStream mapToInt​(ToIntFunction; mapper).
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSMkgprRkm469wb_Kg2V8LY3eEegnQo_2_5nzAfugywVvfusUPHhmlzPHGc1QvxEtfnewR-WtKAoYyX8x5A97MzOCDf6cF9cBaBmj1TAy3-wUYEDIjCtpnE72LzGHvHqFNcU7siTMXwP8/s640/Java+8+Stream+mapToInt%2528ToIntFunction%2529+Method+Examples+%257C+Convert+Stream+to+IntStream.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSMkgprRkm469wb_Kg2V8LY3eEegnQo_2_5nzAfugywVvfusUPHhmlzPHGc1QvxEtfnewR-WtKAoYyX8x5A97MzOCDf6cF9cBaBmj1TAy3-wUYEDIjCtpnE72LzGHvHqFNcU7siTMXwP8/s72-c/Java+8+Stream+mapToInt%2528ToIntFunction%2529+Method+Examples+%257C+Convert+Stream+to+IntStream.png
JavaProgramTo.com
https://www.javaprogramto.com/2019/12/java-8-stream-maptoint.html
https://www.javaprogramto.com/
https://www.javaprogramto.com/
https://www.javaprogramto.com/2019/12/java-8-stream-maptoint.html
true
3124782013468838591
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content