1
vote
3answers
58 views
Is it a rule that unapply will always return an Option?
I tried to create an unapply method to use in pattern matching, and I tried to make it return something different than Option, however, Eclipse shows that as an error. Is it a rule that unapply must …
2
votes
1answer
42 views
Why is this Option transformed to a String? [Scala]
I'm still a Scala noob, and this confuses me:
import java.util.regex._
object NumberMatcher {
def apply(x:String):Boolean = {
val pat = Pattern.compile("\\d+")
val matcher = pat.matcher(x)
…
3
votes
3answers
86 views
Case classes vs Enumerations in Scala
I was wondering if there are any best practice guidelines on when to use case classes vs extending Enumeration in Scala. They seem to offer some of the same benefits.
1
vote
1answer
26 views
Compile scala classes with debug info through Maven
I have a scala project that I use Maven and the maven-scala-plugin to compile. I need to include debug information in the compiled classes and I was wondering is there a way to ask Maven or the scala …
0
votes
1answer
49 views
Is there a Scala command-line debugger?
Is there a Scala command-line debugger (a la jdb)?
3
votes
4answers
103 views
Scala on the CLR
The Scala homepage says that Scala 1.4 was runnable on the .NET framework - what is the status of Scala on the CLR now? Is anyone working on it? I think it would make a great GUI tool combined with …
1
vote
5answers
110 views
In Scala, how do you define a local parameter in the primary constructor of a class?
In Scala, how does one define a local parameter in the primary constructor of a class that is not a data member and that, for example, serves only to initialize a data member in the base class?
For …
0
votes
0answers
42 views
scala compilation problem - with java libs
Im trying to put together a simple ant build file for compiling a scala project (scala 2.7.6)...
I have everything working correctly except that its bringing up the
"fatal error: class …
2
votes
4answers
129 views
Any reason for having “val capacity : Int” instead of “val Int Capacity” in Scala
I am reading Scala and I am wondering ...
Why
val capacity : Int
instead of
val Int capacity.
Any reason why this choice was made. If not, it does not seem to me like a good choice to move away …
0
votes
4answers
111 views
what good orm api will work well with scala or erlang
I'm considering taking up scala programming but i'm really concerned about what will become of my ORM based applications. I currently use hibernate as my ORM and i find it a really reliable tool. I'd …
3
votes
5answers
69 views
Scala 2.7.x type mismatch error when passing null for a reference type
The following Scala code fails to compile in Scala 2.7.7, with a type mismatch error "found: Null(null) required: T" on the last line:
/**
* @param [T] key type
*/
class Key[T]
class Entry[T](val …
2
votes
4answers
119 views
Can a Scala program be compiled to run on any JVM, without having Scala installed on the given machine?
If I've writen a Scala program, can I compile it in a way so that anybody with a standard Sun Java JVM can run it? I guess the Scala compiler would have to include the Scala-specific API code in the …
4
votes
9answers
241 views
A list of things from Java that we will now happily bid good-bye after Scala
I would like a form a list of what nagging things of Java are history and by what feature of Scala has it been replaced.
I must admit I am new to Scala, so I cannot contribute much. But I feel, this …
1
vote
2answers
64 views
Scala compiler error due to constructor parameter (property) having same name in both base and derived class and used in derived method
Short of renaming the constructor parameter in the primary constructor of class B, what change can I make to the following code (without changing its function) so that Scala will compile it …
1
vote
2answers
96 views
What replaces class variables in scala ?
In java I sometimes use class variables to assign an unique id to each new instances. I do something like:
public class Foo {
private static long nextId = 0;
public final long id;
public …
