特殊情况下def和val之间存在差异

时间:2016-11-10 22:54:09

标签: scala

假设我定义了以下类型。

type T[+A] = M => (A, M)

之间有什么区别
val fun: T[Int] = _.nextInt

def fun: T[Int] = _.nextInt

nextIntM带到(Int, M)

0 个答案:

没有答案