-
- Functional Interface:
- 这是一个功能界面,因此可以用作lambda表达式或方法引用的赋值对象。
@FunctionalInterface public interface DoubleToLongFunction
表示接受双值参数并产生长期值结果的函数。 这是double
long
原始专业Function
。这是一个functional interface的功能方法是
applyAsLong(double)
。- 从以下版本开始:
- 1.8
- 另请参见:
-
Function
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 long
applyAsLong(double value)
将此函数应用于给定的参数。
-