Scala apply cannot return 选项
Scala apply cannot return Option
我最近尝试像工厂函数一样使用 apply
:
class X() {
def apply() : Option[X] = if (condition) Some(new X()) else None
}
val x : Option[X] = X() // <- this does not work; type is mismatched
出于某种原因 apply
总是 returns X
。我需要创建一个 Factory
方法吗?
首先,您需要在伴随对象中定义apply
。然后,您需要特别指定 new X()
以便编译器知道使用原始 apply
方法,而不是尝试递归地创建 X
。
case class X()
object X {
def apply(): Option[X] = {
if (Random.nextBoolean()) Some(new X()) else None
}
}
代码 运行 在 Scastie。
我最近尝试像工厂函数一样使用 apply
:
class X() {
def apply() : Option[X] = if (condition) Some(new X()) else None
}
val x : Option[X] = X() // <- this does not work; type is mismatched
出于某种原因 apply
总是 returns X
。我需要创建一个 Factory
方法吗?
首先,您需要在伴随对象中定义apply
。然后,您需要特别指定 new X()
以便编译器知道使用原始 apply
方法,而不是尝试递归地创建 X
。
case class X()
object X {
def apply(): Option[X] = {
if (Random.nextBoolean()) Some(new X()) else None
}
}
代码 运行 在 Scastie。