futures.scala
来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 18 行
SCALA
18 行
package examplesimport concurrent.ops._object futures { def someLengthyComputation = 1 def anotherLengthyComputation = 2 def f(x: Int) = x + x def g(x: Int) = x * x def main(args: Array[String]) { val x = future(someLengthyComputation) anotherLengthyComputation val y = f(x()) + g(x()) println(y) }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?