尝试使用案例类实现智能构造函数。copy
设法很好地覆盖了该方法,并且我认为apply
伴随对象中的 应该可以解决问题,但是在尝试传入BigInt
. 我尝试输入,def apply(value: BigInt): Option[Natural]
但随后scalac
抱怨符号冲突。
import spire.math.Integral // companion object contains implicit Integral[BigInt]
case class Natural private (value: BigInt) {
def copy(value: BigInt = this.value): Option[Natural] =
Natural.apply(value)
}
object Natural {
def apply[A](x: A)(implicit A: Integral[A]): Option[Natural] =
if (A.isPositive(x)) Some(Natural(x))
else None
}
/** In Foo.scala */
Natural(5L) // Option[Natural] = Some(Natural(5))
Natural(BigInt(5L)) // constructor Natural in class Natural cannot be accessed in object Foo
也许这样的事情是不可能的?