Tagged Questions

37
votes
6answers
4k views

What is the difference between scala self-types and trait subclasses?

Self-types seem to be important so I want to know why they are useful. From what I can gather, a self-type for a trait A: trait B trait A { this: B => } says that "A cannot be mixed into a ...
23
votes
4answers
4k views

Scala traits vs abstract classes

In Scala, what is the advantage of using an abstract class instead of a trait (apart from performance)? At first glance it seems like abstract classes can be replaced by traits in most cases.
18
votes
2answers
5k views

Scala Traits Usage

Can someone please explain scala traits? I can't seem to find a good explanation anywhere. Also, what are the advantages of traits over extending an abstract class?
16
votes
3answers
2k views
13
votes
1answer
302 views

Why does Scala have classes when it already has traits?

This may seem like a silly question, so bear with me... Consider this REPL session: scala> trait T defined trait T scala> val t = new T <console>:8: error: trait T is abstract; cannot ...
11
votes
6answers
1k views

Difference between Abstract Class and Trait

What is the conceptual difference between abstract classes and traits?
9
votes
1answer
139 views

Scala multiple with

New to Scala. The language is quite concise. Curious why implementing multiple traits requires multiple "with" statements. For example: class Foo extends Bar with A with B with C {} vs. class ...
8
votes
3answers
130 views

Inferring mutually-dependent default method implementations in Scala

I'd like to define a trait with some properties which have a well defined relationship - for example's sake, let's say that a * b = c. The idea is that implementations of this trait can provide two ...
8
votes
4answers
628 views

Scala immutable objects and traits with val fields

I would like to construct my domain model using immutable objects only. But I also want to use traits with val fields and move some functionality to traits. Please look at the following example: ...
8
votes
4answers
529 views

What does “trait A <: B” mean?

In Scala, what does trait A <: B mean? Is it just the same as trait A extends B ? Edited to add: I'm familiar with the syntax for type parameters, and what <: means in that context. ...
7
votes
1answer
158 views

Composing independent traits

Given two independent traits: trait T1 { def x = 42 } trait T2 { def x = 0 } If I try to define a class mixing in these two traits like: class C extends T1 with T2 I get a compiler ...
6
votes
3answers
1k views

scala and traits on object instances

if i have a trait: trait MyTrait { def doSomething = { println("boo") } } I can add it to a class with "extends": class MyClass extends MyTrait { .... } or i can add it ...
6
votes
3answers
298 views

Implementing an abstract method with a trait, inconsistent compiler behaviour?

I have a base class that comes from a Java library, whose code I cannot modify. This class (A) has an empty method (b) which should have been declared as abstract instead: class A { def b { } } I ...
6
votes
2answers
190 views

A question on traits

What is the difference between following two? 1# trait B extends A { } 2# trait B { self: A => } where A is an abstract class. >> EDIT: Please explain with respect to the ...
6
votes
1answer
2k views

scala: traits and abstract methods override

I have a base abstract class (trait). It has an abstract method meth(). It is extended and implemented by several derived classes. I want to create a trait that can be mixed into the derived classes ...
6
votes
2answers
3k views

Mixing Multiple Traits in Scala

Quick Note: Examples from this tutorial. Suppose I have the following Traits: Student, Worker, Underpaid, Young How could I declare a class (not instance) CollegeStudent with all these traits? ...
5
votes
2answers
195 views

Swappable Trait in Scala

I want to define a Swappable trait with two values x,y and a swap method such that calling swap on an object inheriting from Swappable returns another object of the same type with x,y switched. My ...
5
votes
1answer
185 views

Is there something wrong with an abstract value used in trait in scala?

I have trait Invoker { val method: Method } Intellij IDEA code inspection is warning me that "Abstract value used in trait". Everything compiles fine. Is there something wrong with having an ...
5
votes
1answer
89 views

Can the stackable trait pattern be used with singleton objects?

I'd like to use the stackable trait pattern with singleton objects, but i can't seem to find how to make the compiler happy: abstract class Pr { def pr() } trait PrePostPr extends Pr { abstract ...
5
votes
2answers
146 views

What kind of impact does applying all these Scala traits have at runtime?

Imagine this: val myObject = if(someCondition) { new Whatever with Trait1 } else if(otherCondition) { new Whatever with Trait2 with Trait3 with Trait4 } else { new Whatever with Trait5 } ...
5
votes
1answer
195 views

Is there a way in scala to produce a generic instance without an example instance?

I was playing with creating a generic factory as follows: trait Factory[T] { def createInstance():T = new T() } val dateFactory = new Factory[Date](){} val myDate = dateFactory.createInstance() The ...
5
votes
4answers
242 views

Usign traits with a factory

I'm currently discovering scala and I was wondering if I could use traits with a factory. I tried this : abstract class Foo { ... } object Foo { def apply() = new Bar private class Bar ...
5
votes
3answers
245 views

How to get list of traits that were mixed in the specified class?

And more specific example: abstract trait A trait B extends A trait C extends A How to check what traits that extend trait A (it can be from 0 to many) were mixed in specified class?
5
votes
3answers
548 views

scala: mixins depending on type of arguments

I have a set of classes of models, and a set of algorithms that can be run on the models. Not all classes of models can perform all algorithms. I want model classes to be able to declare what ...
4
votes
3answers
149 views

Why classes that doesn't extends other classes must extend from traits? (with doesn't work)

i'm starting with Scala and i found this a little weird. In java i could do something like this: interface Foo{} public class Bar implements Foo{} I'm trying to do something similar with Scala, ...
4
votes
2answers
192 views

Scala: Mix traits and case class in pattern match

I want to match on some case classes. If I don't know them, I want to match on a specified trait the classes have to extend. This looks like trait Event //root trait trait Status extends Event ...
4
votes
4answers
195 views

If you have Traits, do you stop using interfaces, Abstract base classes, and multiple inheritance?

It seems like Traits could completely replace interfaces, abstract base classes, mixins, and multiple inheritance, leaving you with just Traits and concrete inheritance. Is this the intent? If you ...
4
votes
1answer
141 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 ...
4
votes
2answers
209 views

Why does the Scala API have two strategies for organizing types?

I've noticed that the Scala standard library uses two different strategies for organizing classes, traits, and singleton objects. Using packages whose members are them imported. This is, for ...
4
votes
3answers
382 views

Scala: Mixing traits with private fields

It's not much of a question, it's rather my excitement that it's possible at all! I wrote this little example just to prove the opposite - I expected either a compiler error or one of the values (111 ...
4
votes
3answers
189 views

How to make the type checking at compile time?

In TraversableOnce, there is a sum method that is only usable if the contained type is Numeric (else it won't compile). I wonder if this is usable for other case (to avoid runtime check). In ...
4
votes
2answers
889 views

How do I create an instance of a trait in a generic method in scala?

I'm trying to create an instance of a trait using this method val inst = new Object with MyTrait This works well, but I'd like to move this creation in to a generator function, ie. object Creator ...
4
votes
4answers
968 views

Difference between trait inheritance and self type annotation

In Scala, I've seen the constructs trait T extends S and trait T { this: S => used to achieve similar things (namely that the abstract methods in S must be defined before an instance may be ...
4
votes
4answers
245 views

Conflicting nested inherited traits

Suppose I have the following code: trait Trait1 { trait Inner { val name = "Inner1" } } trait Trait2 { trait Inner { val name = "Inner2" } } class Foo extends Trait1 with Trait2 { ...
4
votes
1answer
333 views

Do I have to create a new object to mix in a Scala trait?

In Scala 2.8, calling groupBy() on a collection returns a Map where the values are collections, but I want a MultiMap. What's the easiest way to do the conversion? Can I avoid creating a new ...
4
votes
2answers
301 views

What are stackable modifications?

I've been reading a book about Scala and there's mention of stackable modifications using traits. What are stackable modifications and for what purposes are they meant to be used?
3
votes
1answer
99 views

Behaviour of super in chained Scala traits

Why does x.func below return "B extends B extends B"? How to arrange this code so that it returns "B extends A extends Base"? trait Base { def name = "Base" def func = name } trait A extends ...
3
votes
1answer
176 views

Traits and serialization/deserialization

Say I have two traits that I would like to mixin to a class. The traits each implement an abstract method that the class needs. trait Writable { def serialize(out: java.io.DataOutput) } trait ...
3
votes
2answers
428 views

Question about Cake Pattern

The Cake Pattern article suggests using traits as namespaces: trait UserRepositoryComponent { val userRepository: UserRepository class UserRepository {...} } trait UserServiceComponent ...
3
votes
1answer
113 views

scala: reuse subclass implementation as a subclass of two different classes?

To simplify my actual code let's say there are two classes, one a subclass of the other: class Chair { val canFold = false; // ... } class FoldableChair extends Chair { val canFold = true; ...
3
votes
2answers
485 views

How are Scala's traits not really traits?

Someone recently told me that Scala's traits aren't "true" traits, and that they were really just mixins. Unfortunately, I didn't get the opportunity to ask him why. Does anyone have an idea what he ...
3
votes
1answer
296 views

Difference between Scala trait and C++ concepts

What is the difference between Scala traits Haskell type class and C++0x Concepts? Like in this example below where Observer declare an abstract members receiveUpdate Observer is in fact a ...
3
votes
1answer
567 views

Scala traits and implicit conversion confusion

The following lines work when I enter them by hand on the Scala REPL (2.7.7): trait myTrait { override def toString = "something" } implicit def myTraitToString(input: myTrait): String = ...
3
votes
2answers
322 views

Do self: T => and this: T => have the same meaning when defining a trait?

It seems I can use self or this for referring to the mixed-in instance or rather to constraint the mixed-in instance. For instance, are those equivalent? scala> trait A { self: List[_] => } ...
2
votes
1answer
78 views

Qualifying an inner trait's method so that it is private from the outside but accessible from the inside

I would like to qualify a method of an inner trait so that it can only be accessed by subclasses of the outer trait. E.g.: trait Tree[ A ] { trait TNode { final def prevOption: Option[ TNode ...
2
votes
1answer
96 views

In Scala how can I advise my own methods?

I want to do this: trait Renderable { def render: String } trait Parens extends Renderable { abstract override def render = "(" + super.render + ")" } object Foo extends Renderable with ...
2
votes
3answers
131 views

Mock classes with traits

Is there any library that provides tools for mocking classes with traits (both can be statefull)? Simplified example: trait T { var xx: List[Int] = List[Int]() def t(x: Int) { xx ::= x ...
2
votes
1answer
88 views

Inherit message handling behaviour

I have some events in my model and some handling logic. I want organize communication logic throw Actors. But how I can inherit handling logic without specifying act() in each concrete class ...
2
votes
2answers
149 views

Unit testing helper or non-interface traits in Scala

This question is about dealing with testing of classes which mix in non-interface traits, that is traits containing some functionality. When testing, the class functionality should be isolated from ...
2
votes
1answer
191 views

How to use reflection on parameterized trait in Scala?

The access on Manifest seems to be tricky from a trait in scala. How could this code compile in scala ? trait SomeTraitOf[+A] { def newInstanceOfA : A = /* necessary code to make it work */ } ...

1 2