Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
11
votes
1answer
202 views

What is more Scala idiomatic: trait TraitA extends TraitB or trait TraitA { self: TraitB => }

Apart from the inheritance aspect, is there a difference between the following class templates: 1| trait TraitA extends TraitB 2| trait TraitA { self: TraitB => } I would like to split ...
6
votes
2answers
83 views

Explicit self-references with no type / difference with ''this''

I understand the use for explicitly typed self-references: trait T { self : T2 => ... } In the body, self is an alias for this but has the more precise type T with T2. Now, I've seen this ...
5
votes
1answer
173 views

Scala: illegal inheritance; self-type Y does not conform to X's selftype SELF

I have a trait, which takes a type parameter, and I want to say that the objects that implements this trait will also conform to this type parameter (using generics, for Java's compatibility) The ...
5
votes
1answer
342 views

Self type inheritance in scala

Say I have the following traits: trait A trait B { this: A => } trait C extends B // { this: A => } Compiler error: illegal inheritance; self-type C does not conform to B's selftype B with ...
4
votes
1answer
92 views

Type aliases for outer object as private scope parameter

I have this situation object SuperHorribleLongName { trait X { private[SuperHorribleLongName] def internalGaga() : Unit } } and I'm trying to get something like this working: object ...
4
votes
4answers
967 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 ...
3
votes
2answers
81 views

Self-type annotation hinders instantiation of inner class. Why?

Given the abstract definitions of the Outer class and its Inner class I would like to instantiate the concrete Inner1 class defined within Outer1 trait. abstract class Outer { type Inner_Tp <: ...
2
votes
3answers
178 views

Overriding a trait and selftype

I want to override the ScalaTest trait BeforeAndAfterEach to have that stuff implemented once for all my tests. Finally I got it to compile, but I don't understand why. trait MySetup extends ...
2
votes
2answers
429 views

Named Scala self-type still shadows “this”?

Working through these posts had me thinking I understood self-types, at least somewhat. So I created an example which failed as expected: scala> trait A { val v = "a" } defined trait A scala> ...
2
votes
2answers
484 views

How to use Scala's this typing, abstract types, etc. to implement a Self type?

I couldn't find the answer to this in any other question. Suppose that I have an abstract superclass Abstract0 with two subclasses, Concrete1 and Concrete1. I want to be able to define in Abstract0 ...
2
votes
1answer
498 views

Java field type for a value of a generically recursive self-type?

Given a class hierarchy where the base class defines a recursive self-type: abstract class A<T extends A<T>> { } How can I declare another class (which should not be generic in T, ...
1
vote
1answer
72 views

Why aren't self-types looked up when calling a method on a constrained trait?

Assuming trait A { def t : Int } trait B { this: A => } why is it that the compiler doesn't "know" that I can call t on B? def test( b: B ) : Int = b.t // doesn't work but that I (apparently ...
1
vote
2answers
189 views

scala self-type: member of type parameter error

This is a followup to this question. Why does this code not compile, and how do I fix it? trait Vec[V] { self:V => def -(v:V):V def dot(v:V):Double def norm:Double = math.sqrt(this dot ...
0
votes
2answers
411 views

scala self-type: value is not a member error

This is a followup to this question. I'm trying to implement vectors in scala with a generic super class using self-types: trait Vec[V] { self:V => def /(d:Double):Vec[V] def dot(v:V):Double ...