T - 操作的对象参数的类型
@FunctionalInterface public interface ObjDoubleConsumer<T>
double参数的操作,并且不返回任何结果。
这是(reference, double)专业BiConsumer 。
与大多数其他功能界面不同,预计ObjDoubleConsumer将通过副作用进行操作。
这是一个functional interface的功能方法是accept(Object, double) 。
BiConsumer
void accept(T t, double value)
t - 第一个输入参数
value - 第二个输入参数
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.