Java 8 | IntSupplier Interface with Examples Last Updated : 11 Jul, 2025 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 Create Quiz P psil123 Follow 0 Article Tags : Misc Java Java - util package java-basics Java 8 +1 More Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References7 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers1 min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read My Profile ${profileImgHtml} My Profile Edit Profile My Courses Join Community Transactions Logout Like