ToIntFunction Interface in Java with Examples Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 2 Likes Like Report The ToIntFunction 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 argument of type T and produces an int-valued result. This functional interface takes in only one generic, namely:- T: denotes the type of the input argument to the operation The lambda expression assigned to an object of ToIntFunction type is used to define its applyAsInt() which eventually applies the given operation on its only argument. It is similar to using an object of type Function<T, Integer>. The ToIntFunction interface has only one function: applyAsInt() This method accepts an argument of type T and gives an int-valued result. Syntax: int applyAsInt(T value) Parameters: This method takes in one parameter value which is an argument of type T. Returns: This method returns an int-valued result. Below is the code to illustrate applyAsInt() method: Program Java import java.util.function.ToIntFunction; public class Main { public static void main(String args[]) { // Instantiating ToIntFunction ToIntFunction<Double> ob = a -> (int)(a * 10); // Applying the above function // using applyAsInt() System.out.println(ob.applyAsInt(3.2)); } } Output: 32 Comment P psil123 Follow 2 Improve P psil123 Follow 2 Improve Article Tags : Misc Java Java - util package java-basics java-interfaces Java 8 +2 More Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings8 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java9 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java5 min readJava Comparator Interface6 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 Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ 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 Like