Friday, July 24, 2026
HomeLanguagesJavaJava 8 | IntSupplier Interface with Examples

Java 8 | IntSupplier Interface with Examples

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 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
RELATED ARTICLES

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6902 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6971 POSTS0 COMMENTS