A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/tointbifunction-interface-in-java-with-examples/ below:

ToIntBiFunction Interface in Java with Examples

ToIntBiFunction Interface in Java with Examples

Last Updated : 11 Jul, 2025

The

ToIntBiFunction 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 int-valued result. This functional interface takes in two generics, namely:-

The lambda expression assigned to an object of ToIntBiFunction type is used to define its

applyAsInt()

which eventually applies the given operation on its two arguments. It is similar to using an object of type

BiFunction

<T, U, Integer>. The ToIntBiFunction interface has only one function:

applyAsInt()

This method accepts two arguments of type T and U and produces an int-valued result.

Syntax:
int applyAsInt(T t, U u)
Parameters:

This method takes in two parameters:

Returns:

This method returns an int-valued result. Below is the code to illustrate applyAsInt() method:

Program Java
import java.util.function.ToIntBiFunction;

public class Main {
    public static void main(String args[])
    {

        ToIntBiFunction<Integer, String>
            ob = (a, b) -> a + Integer.parseInt(b) * 3;

        // Using applyAsInt() method
        System.out.println(ob.applyAsInt(3, "10"));
    }
}


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