public interface ObjLongConsumer
java.util.function.ObjLongConsumer<T> |
表示接受对象值和long
参数的操作,并且不返回任何结果。 这是(reference, long)
的专业化BiConsumer
。 与大多数其他功能接口不同, ObjLongConsumer
预计将通过副作用进行操作。
这是一个 functional interface,其功能方法是 accept(Object, long)
。
也可以看看:
Public methods |
|
---|---|
abstract void |
accept(T t, long value) 对给定的参数执行此操作。 |
void accept (T t, long value)
对给定的参数执行此操作。
Parameters | |
---|---|
t |
T : the first input argument |
value |
long : the second input argument |