我知道你可以创建一个匿名函数,让编译器推断它的返回类型:
val x = () => { System.currentTimeMillis }
只是为了静态打字,是否可以指定其返回类型?我认为这会让事情变得更加清晰。
答案 0 :(得分:47)
val x = () => { System.currentTimeMillis } : Long
答案 1 :(得分:29)
在我看来,如果你想让事情变得更清楚,最好通过在那里添加类型注释而不是函数的结果来记录对标识符x的期望。
val x: () => Long = () => System.currentTimeMillis
然后编译器将确保右侧的函数符合预期。
答案 2 :(得分:9)
Fabian给出了直截了当的方式,但如果你喜欢微观管理糖,其他一些方法包括:
val x = new (() => Long) {
def apply() = System.currentTimeMillis
}
或
val x = new Function0[Long] {
def apply() = System.currentTimeMillis
}
甚至
val x = new {
def apply(): Long = System.currentTimeMillis
}
因为在大多数情况下,如果它从Function下降,只有它是否有一个应用,它没有区别。