gpt4 book ai didi

scala - 在 Scala 中使用惰性 val 的性能损失是什么,但在 def 中

转载 作者:行者123 更新时间:2023-12-04 11:15:02 27 4
gpt4 key购买 nike

我知道在使用惰性 val 的类中使用某种类型的双锁模式。但是在函数定义内部呢?它使用相同的模式吗?

例如:

class Sample {
def computation(): Something = {}

def fn(compute: Boolean, default: Something): Something = {
lazy val c = computation()

if (compute) c*c else default
}
}

最佳答案

是的,它使用相同的模式。查看您的 Scala 代码:

class Sample {
def computation(): Int = 100

def fn(compute: Boolean, default: Int): Int = {
lazy val c = computation()

if (compute) c*c else default
}
}

用scalac编译,用jad反编译:
public class Sample implements ScalaObject
{

public int computation()
{
return 100;
}

public int fn(boolean compute, int default)
{
VolatileIntRef bitmap$0$1 = new VolatileIntRef(0);
IntRef c$lzy$1 = new IntRef(0);
return compute ? c$1(c$lzy$1, bitmap$0$1) * c$1(c$lzy$1, bitmap$0$1) : default;
}

private final int c$1(IntRef intref, VolatileIntRef volatileintref)
{
if((volatileintref.elem & 1) == 0)
synchronized(this)
{
if((volatileintref.elem & 1) == 0)
{
intref.elem = computation();
volatileintref.elem = volatileintref.elem | 1;
}
BoxedUnit _tmp = BoxedUnit.UNIT;
}
return intref.elem;
}

public Sample()
{
}
}

关于scala - 在 Scala 中使用惰性 val 的性能损失是什么,但在 def 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5766005/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com