How do you provide overloaded constructors in Scala?
|
It's worth explicitly mentioning that Auxiliary Constructors in Scala must either call the primary constructor (as in landon9720's) answer, or another auxiliary constructor from the same class, as their first action. They cannot simply call the superclass's constructor explicitly or implicitly as they can in Java. This ensures that the primary constructor is the sole point of entry to the class.
|
|||||
|
|
|
|||||||||||
|
|
As of Scala 2.8.0 you can also have default values for contructor- and method parameters. Like this
Parameters with default values must come after the ones with no default values in the parameter list. |
|||||
|
|
While looking at my code, I suddenly realized that I did kind of an overload a constructor. I then remembered that question and came back to give another answer: In Scala, you can’t overload constructors, but you can do this with functions. Also, many choose to make the Making this class abstract and overloading the
Note that I explicitly define each |
|||
|
|
|
I thought may be Scala Constructors (2008-11-11) could add more information. |
||||
|
|