从另一个表达式的深处多次访问标量表达式的最简洁和字节码有效的方法是什么?
以下代码(不包括 scalar4)中的所有函数都可以根据需要运行。但是只有字节编码器发出有效的字节码(尽管它以 ISTORE 2 ILOAD 2 结尾很糟糕),其他的每个生成六个 INVOKE。
这个习惯用法对于传递元组的任意部分作为参数也很方便:
for (a_tuple) { f(_._3, _._1) + g(_._2) } // caution NOT legal Scala
在这个例子中, intro代表一个只应该被调用一次的昂贵函数。
object Hack extends App
{
@inline final def fur[T, V](x :T)(f :T => V) :V = f(x)
@inline final def pfor[T, V](x :T)(pf :PartialFunction[T, V]) = pf(x)
@inline final def cfor[T, V](x :T)(f :T => V) :V = x match { case x => f(x) }
def intro :Int = 600 // only one chance to make a first impression
def bytecoder = intro match { case __ => __ + __ / 600 }
def functional = fur(intro) (x => x + x / 600)
def partial = pfor(intro) { case __ => __ + __ / 600 }
def cased = cfor(intro) ($ => $ + $ / 600)
def optional = Some(intro).map(? => ? + ? / 600).get
def folder = Some(intro).fold(0)(? => ? + ? / 600)
// the for I wish for
def scalar4 = for(intro) (_ + _ / 600) // single underline!
println(bytecoder, functional, partial, cased, optional, folder)
}
公共字节编码器()我
ALOAD 0
INVOKEVIRTUAL com/_601/hack/Hack$.intro ()I
ISTORE 1
ILOAD 1
ILOAD 1
SIPUSH 600
IDIV
IADD
ISTORE 2
ILOAD 2
IRETURN