Tagged Questions

Scala is a general purpose programming language principally targeting the Java Virtual Machine. Designed to express common programming patterns in a concise, elegant, and type-safe way, it fuses both imperative and functional programming styles. Its key features are: statically typed; advanced ...

learn more… | top users | synonyms

24
votes
11answers
10k views

How to use Scala in IntelliJ IDEA (or: why is it so difficult to get a working IDE for Scala)?

I recently gave up trying to use Scala in Eclipse (basic stuff like completion doesn't work). So now I'm trying IntelliJ. I'm not getting very far. I've been able to edit programs (within syntax ...
20
votes
7answers
14k views

Converting Java collection into Scala collection

Related to this question, how do convert a Java collection (java.util.List say) into a scala collection List? EDIT; what I am actually trying to do is convert a Java API call to Spring's ...
6
votes
1answer
229 views

idiomatic property changed notification in scala?

I'm trying to find a cleaner alternative (that is idiomatic to Scala) to the kind of thing you see with data-binding in WPF/silverlight data-binding - that is, implementing INotifyPropertyChanged. ...
4
votes
1answer
378 views

Scala type inference failure on “? extends” in Java code

I have the following simple Java code: package testj; import java.util.*; public class Query<T> { private static List<Object> l = Arrays.<Object>asList(1, "Hello", 3.0); ...
4
votes
1answer
281 views

Strange behavior: Scala Actors 2.7.7 vs. 2.8-Snapshot

I'm an 18 years old trainee and I'm discovering scala which I like very much :-). To get familiar with the scala actors I wrote a small simulation with some gears and one controller. The ...
3
votes
1answer
49 views

Object initialization sequence in scala in an inherent hierarchy

I'm new to scala from java and confused by sequence of object initialization of scala in an inherent hierarchy. IIRC, in Java, if an object of sub-class is initialized, constructor of its base class ...
2
votes
1answer
92 views

Calling a method on the superclass in a self-typed trait in scala

I'm trying to create a trait that, when mixed in, will replace the default definition of a method with one that calls the original method and then manipulates the result. Here's what I'm trying to ...
2
votes
3answers
318 views

Can I use for-comprehenion / yield to create a map in Scala?

Can I "yield" into a Map? I've tried val rndTrans = for (s1 <- 0 to nStates; s2 <- 0 to nStates if rnd.nextDouble() < trans_probability) ...
2
votes
3answers
294 views

How to extract valid email from larger string in Scala

My scala version 2.7.7 Im trying to extract an email adress from a larger string. the string itself follows no format. the code i've got: import scala.util.matching.Regex import ...
2
votes
1answer
867 views

initialising a 2-dim Array in Scala

(Scala 2.7.7:) I don't get used to 2d-Arrays. Arrays are mutable, but how do I specify a 2d-Array which is - let's say of size 3x4. The dimension (2D) is fixed, but the size per dimension shall be ...
2
votes
2answers
350 views

Illegal inheritance compilation error using Scala 2.7.7 and LIFT 1.1-SNAPSHOT

I am using JDK 1.6.0_16, and Scala 2.7.7, compiling with maven. I do mvn clean compile and I get four errors, but they are identical, in different models: [ERROR] ...
1
vote
2answers
81 views

Looking for example of type class usage that will work in Scala 2.7.7 and 2.8 scripts

Hi I'm looking for a quick example of type class usage in Scala that will work in both 2.7.7 and 2.8 environments. All of the examples that I've seen only work in 2.8, but I've been told that type ...
1
vote
3answers
1k views

Stuck at “Hello World” with IntelliJ IDEA 9.0.1 for Scala

I've been using Eclipse since 2.x and IDEs in general for over 20 years (since Turbo Pascal and Turbo C in the late '80s!). (that preamble is supposed to imply, "I'm not an idiot" ... but doesn't ...
0
votes
2answers
127 views

Scala found List and SeqProjection, when required Seq and Set

Sitting with the following error: TestCaseGenerator.scala:47: error: type mismatch; found : List[(State, Seq.Projection[State])] required: Seq[(State, Set[State])] new LTS(Map(rndTrans: _*), ...