ToIntFunction applyAsInt applies this function to the given argument.
applyAsInt
has the following syntax.
int applyAsInt(T value)
The following example shows how to use applyAsInt
.
import java.util.function.ToIntFunction; /*from w w w .j a v a 2 s . c o m*/ public class Main { public static void main(String[] args) { ToIntFunction<String> i = (x)-> Integer.parseInt(x); System.out.println(i.applyAsInt("2")); } }
The code above generates the following result.