- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
2.8.0.head : multiple overloaded alternatives
Tue, 2010-03-30, 00:11
Should this be an error condition?
In file Test.scala
class MultiOverload {
def get(name1: String = "One", name2: String = "Two"): String = {
"hi"
}
def get(i: Int, name1: String = "One", name2: String = "Two"): String = {
"hi"
}
}
scalac Test.scala
Test.scala:3: error: in class MultiOverload, multiple overloaded
alternatives of method get define default arguments.
class MultiOverload {
^
one error found
Richard
Yes. From section 3.1 of the SID[1] (also in section 5.1.3 of the spec [2]):
If there are multiple overloaded alternatives of a method, at most one is allowed to specify default arguments.
-Mark
[1] http://www.scala-lang.org/sid/1
[2] http://www.scala-lang.org/archives/downloads/distrib/files/nightly/pdfs/...
On Monday 29 March 2010, richard emberson wrote:
> Should this be an error condition?
>
> In file Test.scala
>
> class MultiOverload {
> def get(name1: String = "One", name2: String = "Two"): String = {
> "hi"
> }
> def get(i: Int, name1: String = "One", name2: String = "Two"): String = {
> "hi"
> }
> }
>
>
> scalac Test.scala
> Test.scala:3: error: in class MultiOverload, multiple overloaded
> alternatives of method get define default arguments.
> class MultiOverload {
> ^
> one error found
>
>
> Richard
>