当我将此类添加到 scala 工作表时,我收到错误:
';' 预期但发现“导入”。
object polynomials {
class Poly(val terms: Map[Int , Double]) {
def + (other: Poly) = new Poly(terms ++ other.terms)
}
val p1 = new Poly(Map(1 -> 2.0, 3 -> 4.0, 5 -> 6.2))
}
我觉得这门课很好,有什么遗漏吗?