I'm new to scala and I have a very simple problem :
I defined a class like this :
case class Image (imageId: Long, userId: Option[Long])
But if I want to create an instance of this class with only an imageId
like this :
var newImage = new Image(1)
I get this error although I'm using an Option[Long]
:
not enough arguments for constructor
Unspecified value parameter userId.
What I am doing wrong? Thanks ;)
To reiterate the error message you're not giving it enough arguments.
Option
is not optional in that you have to provide a value for it namelySome
orNone
. If you don't want to provide a value and want to use a default value you can give one in the constructor like so:Then you can do this and the default value
None
is used.Of course, you can still provide a value when you have one.