Open In App

ToLongBiFunction Interface in Java with Examples

The ToLongBiFunction 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 two arguments of type T and U and produces an long-valued result.

This functional interface takes in two generics, namely:-



The lambda expression assigned to an object of ToLongBiFunction type is used to define its applyAsLong() which eventually applies the given operation on its two arguments. It is similar to using an object of type BiFunction<T, U, Long>.

The ToLongBiFunction interface has only one function:



applyAsLong()

This method accepts two arguments of type T and U and produces a long-valued result.

Syntax:

long applyAslong(T t, U u)

Parameters: This method takes in two parameters:

Returns: This method returns a long-valued result.

Below is the code to illustrate applyAsLong() method:

Program




import java.util.function.ToLongBiFunction;
  
public class Main {
    public static void main(String args[])
    {
        ToLongBiFunction<Integer, String>
            ob = (a, b) -> a + Integer.parseInt(b) * 1000000;
  
        // Using applyAsLong() method
        System.out.println(ob.applyAsLong(3, "10"));
    }
}

Output:
10000003
Article Tags :