Last Updated : 11 Jul, 2025
The
DoubleToLongFunction Interfaceis a part of the
java.util.functionpackage which has been introduced since Java 8, to implement
functional programmingin Java. It represents a function which takes in a double-valued argument and gives an long-valued result. The lambda expression assigned to an object of DoubleToLongFunction type is used to define its
applyAsLong()which eventually applies the given operation on its only argument. It is similar to using an object of type Function<Double, Long>. The DoubleToLongFunction interface has only one function:
1. applyAsLong() :This method accepts a double-valued argument and gives an long-valued result.
Syntax:long applyAsLong(double value)Parameters:
This method takes in one parameter
valuewhich is the double-valued argument.
Returns:This method returns an
long-valuedresult. Below is the code to illustrate applyAsLong() method:
Program Java
// Java Program to demonstrate
// DoubleToLongFunction's applyAsLong() method
import java.util.function.DoubleToLongFunction;
public class Main {
public static void main(String args[])
{
// Declare the DoubleToLongFunction
DoubleToLongFunction truncate = a -> (long)a;
// Apply the function to get the result as long
// using applyAsLong()
System.out.println(truncate.applyAsLong(10.6));
}
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4