LongFunction Interface in Java with Examples
Last Updated :
11 Jul, 2025
The
LongFunction 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 long-valued argument and produces a result of type
R.
This functional interface takes in only one generic, namely:-
- R: denotes the type of the output of this function
The lambda expression assigned to an object of LongFunction type is used to define its
apply() which eventually applies the given operation on its only argument. It is similar to using an object of type
Function<Long, R>.
The LongFunction interface has only one function:
apply()
This method accepts a long-valued argument and gives a result of type R.
Syntax:
R apply(long value)
Parameters: This method takes in one parameter
value which is a long-valued argument.
Returns: This method returns a value of type
R.
Below is the code to illustrate apply() method:
Program
Java
import java.util.function.LongFunction;
public class Main {
public static void main(String args[])
{
LongFunction<Double> ob = a -> a / 2.0;
// Using apply()
System.out.println(ob.apply(3));
}
}