This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Why isn't operator overloading handling this?

1 reply
Kenneth McDonald
Joined: 2009-01-11,
User offline. Last seen 42 years 45 weeks ago.

The following bit of code:

case class CharSet(set:String) extends Matcher("[" + set + "]") {

/** Char class subtraction; things in this but not in 'notin' */
def -(notin:CharSet):FinalCharClass = FinalCharClass(set, true,
notin.set)
def -(notin:String):CharSet = this - CharSet(notin)
...
}

results in a compiler error:

Macintosh-5:scalaapplication1 Ken$ fsc -deprecation rex.scala
/Users/Ken/NetBeansProjects/ScalaApplication1/src/scalaapplication1/
rex.scala:128: error: type mismatch;
found : rex.CharSet
required: String
def -(notin:String):CharSet = this - CharSet(notin)
^
one error found

where the "^" points to the CharSet(notin) expression. If I comment
out the second '-' def, everything
works fine, not surprisingly.

But isn't this a case where operator overloading should be able to
determine which version of '-'
to call? What am I missing?

Thanks,
Ken

extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: Why isn't operator overloading handling this?

On Thu, Jan 22, 2009 at 12:56:51PM -0600, Kenneth McDonald wrote:
> def -(notin:CharSet):FinalCharClass = FinalCharClass(set, true,
> notin.set)
> def -(notin:String):CharSet = this - CharSet(notin)

Neither of the return types of those methods is a subtype of the other. Declare the return type as AnyRef, or give them a more
useful common type and declare that.

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland