Module java.base

Interface LongFunction<R>

类型参数:
R - 函数结果的类型
函数式接口:
这是一个函数式接口,因此可以用作lambda表达式或方法引用的赋值目标。

@FunctionalInterface public interface LongFunction<R>
表示接受长整型参数并生成结果的函数。这是 long 类型的 Function 的原始特化版本。

这是一个 函数式接口,其功能方法是 apply(long)

自 JDK 版本:
1.8
参见:
  • Method Summary

    Modifier and Type
    Method
    Description
    R
    apply(long value)
    将此函数应用于给定的参数。
  • Method Details

    • apply

      R apply(long value)
      将此函数应用于给定的参数。
      参数:
      value - 函数参数
      返回值:
      函数结果