I have a legacy message in my system, and I would like to be able to map it new version the message in my system.
Why can't I overload my case class?
case class Message(a:Int, b:Int)
case class NewMessage(a:Int, b:Int, c:Int) {
def this(msg : Message) = this(a = msg.a, b = msg.b, c = 0)
}
val msg = Message(1,2)
val converted = NewMessage(msg)
This code doesn't seem to compile. :(
You must explicitly call constructor by using
new
operator:It works because you are actually defining a second constructor in
NewMessage
while ordinary:is translated to: