Java 8 | IntSupplier Interface with Examples Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The IntSupplier Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which does not take any argument but produces an int value. The lambda expression assigned to an object of IntSupplier type is used to define its getAsInt() which eventually applies the given operation on its argument. It is similar to using an object of type Supplier<Integer> Functions in IntSupplier Interface The IntSupplier interface consists of the only one function: 1. getAsInt() This method does not take in any value but produces an int-valued result. Syntax: int getAsInt() Return Value: This method returns an int value. Below is the code to illustrate getAsInt() method: Program: Java // Java program to illustrate // getAsInt method of IntSupplier Interface import java.util.function.IntSupplier; public class GFG { public static void main(String args[]) { // Create a IntSupplier instance IntSupplier sup = () -> (int)(Math.random() * 10); // Get the int value // Using getAsInt() method System.out.println(sup.getAsInt()); } } Output: 7 Comment More infoAdvertise with us Next Article Supplier Interface in Java with Examples P psil123 Follow Improve Article Tags : Misc Java Java - util package java-basics Java 8 +1 More Practice Tags : JavaMisc Similar Reads Java 8 | LongSupplier Interface with Examples The LongSupplier Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which does not take in any argument but produces a long value. The lambda expression assigned to an object of LongSuppl 1 min read IntFunction Interface in Java with Examples The IntFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in an int-valued argument and produces a result of type R. This functional interface takes in only one gener 1 min read Supplier Interface in Java with Examples The Supplier Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which does not take in any argument but produces a value of type T. Hence this functional interface takes in only one gener 1 min read Java 8 | ObjIntConsumer Interface with Example The ObjIntConsumer Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in two arguments and produces a result. However these kind of functions don't return any value. Hence thi 2 min read Java 8 | IntToDoubleFunction Interface in Java with Examples The IntToDoubleFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in an int-valued argument and gives a double-valued result. The lambda expression assigned to an obj 1 min read Java Native Interface with Example In the Programming World, it is often seen in the comparison of Java vs C/C++. Although the comparison doesn't make any such sense, as both the languages have their Pros and Cons, but what if we can use multiple languages in a single Program?In this article, we will learn How to use JNI(Java Native 4 min read Like