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

How to handle a superclass constructor call with a complex condition?

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

As my Scala learning exercise, I'm writing a little library to allow
regular expressions to be dealt with at a more abstract level. One of
the classes I have is this short one:

protected case class RawCharSet(in:String, notIn:String) extends
Matcher("[" + in + (if (notIn =="") "" else "&&[^" + notIn + "]")
+ "]")

Basically, it produces regular expressions like [abc] if the second
argument is "", or [abc&&[^def]] if the second argument is a value
such as "def".

However, this is less than readable. I'd like to factor it into a form
where the the string argument is built first, and then the constructor
(or superclass constructor, with the code organization above) is
called--but that's not possible, as even for auxiliary constructors,
the first statement must be a call on "this(...)".

Any tricks I'm not aware of that you can suggest?

Thanks,
Ken

extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: How to handle a superclass constructor call with a complex

On Sat, Jan 17, 2009 at 02:11:22PM -0600, Kenneth McDonald wrote:
> protected case class RawCharSet(in:String, notIn:String) extends
> Matcher("[" + in + (if (notIn =="") "" else "&&[^" + notIn + "]") +
> "]")
>
> However, this is less than readable. I'd like to factor it into a form
> where the the string argument is built first, and then the constructor
> (or superclass constructor, with the code organization above) is
> called--but that's not possible, as even for auxiliary constructors, the
> first statement must be a call on "this(...)".

Just put it in an object. What you can't do is call instance methods in the object being created.

object Bob {
def complexOp(s1: String, s2: String) = "la " + s1 + "de da" + s2
}
import Bob._

protected case class RawCharSet(in:String, notIn:String) extends Matcher(complexOp(in, notIn))

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