Most visited

Recently visited

Added in API level 24

LongConsumer

public interface LongConsumer

java.util.function.LongConsumer
Known Indirect Subclasses


表示接受单个long参数long返回结果的操作。 这是针对longConsumer的原始类型long 与大多数其他功能接口不同, LongConsumer预计将通过副作用进行操作。

这是一个 functional interface,其功能方法是 accept(long)

也可以看看:

Summary

Public methods

abstract void accept(long value)

对给定的参数执行此操作。

default LongConsumer andThen(LongConsumer after)

返回合成的 LongConsumer ,依次执行此操作,然后执行 after操作。

Public methods

accept

Added in API level 24
void accept (long value)

对给定的参数执行此操作。

Parameters
value long: the input argument

andThen

Added in API level 24
LongConsumer andThen (LongConsumer after)

返回合成LongConsumer ,依次执行此操作,然后执行after操作。 如果执行任一操作会引发异常,则将其传递给组合操作的调用者。 如果执行此操作会引发异常,则不会执行after操作。

Parameters
after LongConsumer: the operation to perform after this operation
Returns
LongConsumer a composed LongConsumer that performs in sequence this operation followed by the after operation
Throws
NullPointerException if after is null

Hooray!