Java 8 | DoubleToIntFunction Interface in Java with Example Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The DoubleToIntFunction 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 a double-valued argument and gives an int-valued result. The lambda expression assigned to an object of DoubleToIntFunction 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<Double, Integer>. The DoubleToIntFunction interface has only one function: applyAsInt() : This method accepts a double-valued argument and gives an int-valued result. Syntax: int applyAsInt(double value) Parameters: This method takes in one parameter value which is the double-valued argument to be applied as integer. Returns: This method returns an int-valued result. Below is the code to illustrate applyAsInt() method: Program Java // Java Program to demonstrate // DoubleToIntFunction's applyAsInt() method import java.util.function.DoubleToIntFunction; public class Main { public static void main(String args[]) { // Create a DoubleToIntFunction DoubleToIntFunction truncate = a -> (int)a; // Apply the function using applyAsInt() System.out.println(truncate.applyAsInt(10.6)); } } Output: 10 Comment More infoAdvertise with us Next Article Java.util.function.DoubleBinaryOperator interface 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 | DoubleToLongFunction Interface in Java with Examples The DoubleToLongFunction 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 a double-valued argument and gives an long-valued result. The lambda expression assigned to an o 1 min read DoubleFunction Interface in Java with Examples The DoubleFunction 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 a double-valued argument and produces a result of type R. This functional interface takes in only one 1 min read Java 8 | DoubleSupplier Interface with Examples The DoubleSupplier 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 double value. The lambda expression assigned to an object of Doubl 1 min read Java.util.function.DoublePredicate interface in Java with Examples The DoublePredicate interface was introduced in JDK 8. This interface is packaged in java.util.function package. It operates on a Double object and returns a predicate value based on a condition. It is a functional interface and thus can be used in lambda expression also. public interface DoublePred 2 min read Java.util.function.DoubleBinaryOperator interface with Examples The DoubleBinaryOperator interface was introduced in Java 8. It represents an operation on two double values and returns the result as a double value. It is a functional interface and thus can be used as a lambda expression or in a method reference. It is mostly used when the operation needs to be e 2 min read Java 8 | BooleanSupplier Interface with Examples The BooleanSupplier 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 boolean value. The lambda expression assigned to an object of Boo 1 min read Like