public interface DoubleBinaryOperator
| java.util.function.DoubleBinaryOperator |
表示对两个double操作数进行操作并生成double值的结果。 这是BinaryOperator针对double的原始类型专长。
这是一个 functional interface,其功能方法是 applyAsDouble(double, double) 。
公共方法(Public methods) |
|
|---|---|
abstract double |
applyAsDouble(double left, double right) 将此运算符应用于给定的操作数。 |
double applyAsDouble (double left,
double right)
将此运算符应用于给定的操作数。
| 参数(Parameters) | |
|---|---|
left |
double: the first operand |
right |
double: the second operand |
| 返回(Returns) | |
|---|---|
double |
the operator result |