Scala strict & non-strict

strict

定义: a strict function always evaluates its arguments. 也就是说在调用函数时,会先把参数进行计算再传入。

def strictFun(i: Int) = {
    println("strictFun in body")
    (i, i)
}

strictFun {
    println("strictFun outside")
    41
}

执行结果:

strictFun outside
strictFun in body
res0: (Int, Int) = (41,41)

结论:可以看到 strictFun in body 只被打印了一次。说明strictFun对参数进行了cache。

strict

定义: function may choose not to evaluate one or more of its arguments. 也就是说在调用函数时,直接把参数表达式传入,并不进行计算。在函数体内被调用的地方进行计算。

def nonStrictFun(i: => Int) = {
    println("nonStrictFun in body")
    (i, i)
}

nonStrictFun {
    println("nonStrictFun outside")
    41
}

执行结果:

nonStrictFun in body
nonStrictFun outside
nonStrictFun outside
res1: (Int, Int) = (41,41)

结论: nonStrictFun outside 被打印了两次,函数不对参数进行cache,每次在函数体内的调用都被重新计算。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值