Version 2.8 of the Scala language for the JVM. Use only if your question is specifically related to features of this version.

learn more… | top users | synonyms

1
vote
2answers
214 views

Scala Date Format issue

I have code snippet which is giving different output in scala and java. I want the same output as in Java, any one please guide. Output in Java: 2012-12-13T10:36:38 Output in Scala: ...
1
vote
2answers
162 views

Pass null to a method expects Long

I have a Scala method that takes 2 parameters: def test(x:Long,y:Int){} On some occasion I need to pass null instead of long ... something like that: test(null,x) The result: scala> ...
5
votes
1answer
165 views

Assigning scala empty array

I'm totally new to Scala. Here I have tried to assign a empty array to a variable, it was successful. But when I tried to append an integer element to the variable an error occured as below: var ...
0
votes
0answers
37 views

can mailboxSize be used to count number of messages receved by a scala actor?

I have a problem in which I have to count the number of messages received by several scala actors (I am using all the actors as instances of the same Actor class), and also maintain their counts ...
1
vote
2answers
131 views

how to start remote actors in scala

I want to start remote actors from my local computer using scala . Can I just start running the actors on the remote computer without manually starting a server program of some kind in the remote ...
2
votes
1answer
132 views

Forwarding calls to underlying object in Scala

I have the following class definition: class Foo[T](iteratorThunk: () => Iterator[T]) { def values = iteratorThunk() } And I would like Foo to have all the methods that Iterator exposes, while ...
1
vote
2answers
331 views

How to manage DB related Exceptions in Play! 2.0/Scala using Anorm

I am currently Play!ing with Play 2.0 (Scala). I must admit that it's a lot of fun. I have a question though related to database-related operations exceptions. Let's say I have Car as a domain class ...
1
vote
1answer
242 views

Scala 2.8.1 => 2.9.2 RangeByOne NoSuchMethod error

So I'm using a graph library that has it's dependencies for Scala listed in build.sbt as 2.8.1. I tried changing it to Scala 2.9.2, and it compiled fine, but got this runtime error: [error] ...
3
votes
1answer
182 views

Scala 2.8 vs 2.9 benchmark, strange results

Some time ago, I wrote some code to decide which method of updating mutable variable with new value (but without creating new objects) is faster. One method uses a temporary value and there is an ...
6
votes
1answer
191 views

Why does Scala define a “+=” operator for Short and Byte types?

Given the following scala code: var short: Short = 0 short += 1 // error: type mismatch short += short // error: type mismatch short += 1.toByte // error: type mismatch I don't ...
2
votes
1answer
193 views

NoSuchMethodError when initialising actors in Scala 2.8

I recently downgraded to Scala 2.8, and now whenever I try to initialise an actor, I get the following error message: java.lang.NoSuchMethodError: ...
1
vote
0answers
65 views

Lift Rest's auto conversion is not working

I have below Rest class object MyRest extends RestHelper { override implicit val formats = net.liftweb.json.DefaultFormats + BigDecimalSerializer serveJx[MyRest.AutoJsonXmlAble] { case ...
2
votes
2answers
404 views

Superclass constructors in scala

Scala's handling of superclass constructor parameters is confusing me... with this code: class ArrayElement(val contents: Array[String]) { ... } class LineElement(s: String) extends ...
7
votes
3answers
231 views

Does it make any sense to use pattern matching in Scala with really simple cases?

In 'Programming in Scala, Second Edition' at page 410 you can find class Simulation which have the following method: private def next() { (agenda: @unchecked) match { case item :: rest => ...
0
votes
2answers
126 views

How could I overload trait variable

Hello I have the follwong : trait CarObject{ val name: String } def takeCarObject(obj:CarObject) How could I prepare a trait object ,CarObject, and pass it to the method ? I have tried : ...
4
votes
3answers
479 views

moving from java threads to scala actors

i have a java application which has various Agents(Java Algo's) which listen to messages and process them . Each agent executes these messages on a single thread where these messages are added in a ...
8
votes
2answers
252 views

Scala 2.8 handles Boolean and java.lang.Boolean properly?

Consider the following: scala> val a:java.lang.Boolean = true a: java.lang.Boolean = true scala> val b = true b: Boolean = true scala> a == b res4: Boolean = true scala> b == a ...
2
votes
1answer
101 views

Override Scala Panel Coordinates

I am attempting to override the coordinate system of a scala.swing.Panel. I want to work only in the first quadrant on the Cartesian coordinate system. Thus, I want the lower left hand corner of ...
9
votes
1answer
245 views

Strange behavior of Set4 in scala 2.9.1?

Making a migration from 2.8.1 to 2.9.1 found interesting thing. Tried to write this in console: >>import collection.immutable.Set.Set4 >>new Set4[Int](1,2,3,4) It gives: ...
7
votes
1answer
544 views

What are main changes from scala 2.8.1 to scala 2.9.1?

I am working on project implemented in scala 2.8.1, want to migrate to scala 2.9.1 and use akka-actors libraries instead of standard, but didn't find good summary of main changes, here what I found: ...
4
votes
3answers
507 views

Scala actor memory leaks, are they as bad as It was or improving?

I am currently studding Scala 2.8 using Programming in Scala 2nd edition. But I am beginning to get really concerned about posts like this Clojure vs Scala Is Scala this bad about memory leaks, this ...
1
vote
2answers
327 views

Scala case class constructor with WrappedArray argument

I have the following scenario: sealed abstract class Type(val inUse: Boolean) case class IntTy(override val inUse: Boolean) extends Type(inUse) case class TupleTy(override val inUse: Boolean, ...
5
votes
3answers
474 views

How to define scala type for no argument function?

This works def func(f: => Int) = f This dosn't (inside class for example) type EmptyFunct = => Int or type EmptyFunct = (=> Int) Scala version 2.9 Two questions: Why dosn't syntax ...
3
votes
4answers
407 views

reduce list of integers/range of integers in scala

Total newbie question here...Today while trying to calculate sum of a list of integers(actually BitSet), I ran into overflow scenarios and noticed that the return type of(sum/product) is Int. Are ...
3
votes
2answers
676 views

Help Drools integration with Scala

I am new with Drools. I am integrating Drools with Scala. I am trying the project given at http://www.gettingcirrius.com/2010/12/using-jboss-rules-drools-in-scala.html. I have made a small change in ...
4
votes
1answer
163 views

Methods in trait become volatile methods when mixed in concrete classes in 2.9.0-1 but not 2.8.1

I noticed this breaking (for me using it with OGNL) change in 2.9.0-1: I find that, in 2.9, methods declared in a trait become volatile when mixed in a class: Example in 2.9.0-1 import ...
8
votes
3answers
403 views

Case classes and Proxy behaviour in Scala 2.9

On migrating our code to Scala 2.9 we've found large swathes of it that didn't work and failed silently. We tracked it down to case classes that extend Proxy not being equal. In our code we don't ...
0
votes
1answer
91 views

List of URL Views / Templates for User in Lift Scala

Im trying to show a list of views for the logged in user. The list consists of the db entities for the user which i can retrieve from them db. Im trying to bind the correct address to the current ...
2
votes
2answers
224 views

Access entity within Lift Scala net.liftweb.util.Box object

I have a net.liftweb.util.Box object which is returned as a result of a search on a user id. The box object returns something like: net.liftweb.util.Box[MyEntity{attributes}] How can I access the ...
3
votes
1answer
166 views

How do I invoke the '!=' method on an object?

I just started playing with scala and have been using the "Scala By Example" by Michel Schinz ( http://www.scala-lang.org/node/198 ) as a starting point. In the segment on traits, I've attempted to ...
2
votes
1answer
392 views

Scala 2.8: how to initialize child class

Consider the following code: abstract class X { def a:Unit a } class Y extends X { var s:String = "Hello" def a:Unit = println ("String is "+s) } This gives the following output: ...
2
votes
2answers
188 views

Why scala doesn't recognize method from trait

First of all i have trait: import _root_.com.thoughtworks.selenium._ import org.scalatest.matchers.ShouldMatchers import org.scalatest.matchers.ShouldMatchers._ trait SeleniumField extends ...
5
votes
1answer
389 views

Use cases of Scala collection forwarders and proxies

Scala's collection library contains the forwarders IterableForwarder, TraversableForwarder, SeqForwarder and proxies like IterableProxy, MapProxy, SeqProxy, SetProxy, TraversableProxy, etc. Forwarders ...
1
vote
2answers
457 views

Scala class with Publisher and Subscriber traits

Using import scala.collection.mutable.{Publisher, Subscriber} I'm trying to implement a class that subscribes to events and publishes events. For example, this class may receive raw data, operate on ...
0
votes
1answer
208 views

Scala, Problem with Scala 2.8.1 installation on Maverick

i've izpack installer Scala 2.8.1 after install it at /usr/local/scala and set environment variable at etc/environment it's work normally for execute command like scala or scalac, but if i execute ...
1
vote
1answer
790 views

Scala Java Deep Map Conversion (ConcurrentHashMap)

I have a ConcurrentHashMap object defined as below: import scala.collection.JavaConversions._ val storage: ConcurrentMap[String,ConcurrentMap[Int,ConcurrentMap[String,Double]]] = new ...
2
votes
2answers
442 views

How to create a wrapper of List with a specific type

I am trying to create a wrapper of List with a specific type (e.g. List[Int]) such that methods that take an implicit CanBuildFrom parameter return an instance of my wrapper instead of List. One ...
4
votes
2answers
465 views

How can two coupled Scala generic type constructors refer to each other as type parameters?

In Java 1.6.0_21, the first example below compiles fine, and I think that's because the parameter type bounds are bare. That is, in the "Z extends Zen" bound below, Java allows Zen to slide by as ...
1
vote
1answer
129 views

Scala dynamic typing, type bounds and java objects - is this expected behavior or a bug?

Sorry if this has been covered already. The following simple example of dynamic typing and type bounds does not work with a list of strings but works perfectly well with a (scala) class containing a ...
2
votes
2answers
642 views

scala returning tuples from functions

Lets say I have something like this: def f () = { var v = someLookupToV() match v { case Some(v) => (v.id, someOtherLookup(v.id)) case None => None // <<-- doesn't ...
2
votes
3answers
1k views

Is there a method to find a matching element in a list and map it

Is there a method to do the following without doing both methods: find and map? val l = List(1,2,3) l.find(_ * 33 % 2 == 0).map( _ * 33) returns Some(66) Thanks.
8
votes
1answer
822 views

ScalaQuery multiple primary key & foreign key

How do we define a multiple primary key and a foreign key in ScalaQuery? object myTable1 extends Table([Int])("myTable1") { def id = column[Int]("id", O PrimaryKey) def * = id } object ...
1
vote
5answers
411 views

Repeated prompt until correct input

I am picking up Scala recently. I have been used to C and Java before. I am wondering if there is a more elegant way of asking for input repeatedly until correct input is given. val choiceType = { ...
1
vote
1answer
225 views

Scala program exiting before the execution and completion of all Scala Actor messages being sent. How to stop this?

I am sending my Scala Actor its messages from a for loop. The scala actor is receiving the messages and getting to the job of processing them. The actors are processing cpu and disk intensive tasks ...
4
votes
4answers
232 views

How to define anything that extends this trait

Refer to the following code snippet: trait Fruit { val color:String def == (fruit:Fruit) = this.color == fruit.color } case class Orange(color:String) extends Fruit case class ...
2
votes
2answers
551 views

Scala implicit ClassManifest[T] is null in Array.fill(..)

I started messing around with generics in Scala, and it is a tough cookie to break. My idea is to learn it by writing a generic matrix class for use in my parallel computing project. However, I have ...
5
votes
3answers
2k views

How to read from zipped xml files in Scala code?

How do I access XML data files directly from a zipped file in my Scala program? Are there any direct ways to programmatically unzip and read contents in my Scala code?
1
vote
1answer
364 views

Difference between matching String and Int in Scala

Consider the following two fragments of code: scala> def f1(x:Any) = x match { case i:String => i; case _ => null } f1: (x: Any)String scala> def f2(x:Any) = x match { case i:Int => ...
5
votes
1answer
641 views

Scala parameterized type problem with returning an instance of the same type

In the following, I will present only very reduced versions of my Scala code. Just enough to show the problem. Unnecessary blocks of code will be reduced to .... The part that works I have created a ...
5
votes
1answer
213 views

Scala: function/method application and tuples

I stumbled across a pretty interesting behavior in Scala. scala> def foo(t: (Int, Int, Int)): Int = t._1 foo: (t: (Int, Int, Int))Int scala> foo(1,2,3) res23: Int = 1 scala> foo((1,2,3)) ...

1 2 3 4 5 8