例如,我具有以下特征:
trait Some {
def method // i can omit the return type
val field: Some // i can't
}
如果我省略了抽象字段的类型,它会引发编译错误,但在方法的情况下不会?
例如,我具有以下特征:
trait Some {
def method // i can omit the return type
val field: Some // i can't
}
如果我省略了抽象字段的类型,它会引发编译错误,但在方法的情况下不会?