我有一个这样的实体类:
case class Entity(id: Integer, name: String)
和类命令代码:
trait GeneralCommand {
val id: Option[Integer]
}
sealed abstract class EntityCommands(id: Option[Integer]) extends DomainCommand {
def this(id: Integer) = this(Option(id))
}
case class UpdateEntity(entity: Entity, id: Integer = entity.id) extends EntityCommands(id)
在Intellij Idea中,此代码未突出显示。但是sbt clean compile
抱怨说:
not found: value entity
case class UpdateEntity(entity: Entity, id: Integer = entity.id) extends EntityCommands(id)
^
是否可以在scala中的case类中重用参数?
答案 0 :(得分:1)
据我所知你不能那样做(在SO上某处有一个相关的问题,目前我找不到),简单的解决办法是添加一个应用方法:
case class UpdateEntity(entity: Entity, id: Integer) extends EntityCommands(id)
object UpdateEntity {
def apply(ent: Entity) = new UpdateEntity(ent, ent.id)
}
答案 1 :(得分:1)
案例类中提交的id的用途是什么?这还够吗?
case class UpdateEntity(entity: Entity) extends EntityCommands(entity.id) {
val id = Option(entity.id)
}
答案 2 :(得分:0)
您可以使用多个参数列表来执行此操作:
case class UpdateEntity(entity: Entity)(id: Integer = entity.id) extends EntityCommands(id)
但这是以在模式匹配中使用第二个参数不可能为代价的。