Tagged Questions
The trait tag has no wiki summary.
11
votes
1answer
201 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 ...
10
votes
4answers
135 views
Ways to achieve effective Java traits?
Please let me know if this is inappropriate as formulated (in particular whether Programmers.SE or something would be better for the question.)
Alright. So I've got a number of 'traits' that I'm ...
9
votes
2answers
532 views
How do you return an Iterator in Scala?
What must I do in order to be able to return an Iterator from a method/class ? How would one add that trait to a class?
8
votes
1answer
157 views
What is the difference between “class C extends A with B” and “class C extends B” when trait B extends trait A
When two traits are defined like this,
trait A
trait B extends A
what is the difference between these two.
class C extends B
class D extends A with B
I do not think it is necessary for class C ...
8
votes
4answers
1k views
What are some good examples of Mixins and or Traits?
I was reading up on Ruby, and learned about its mixins pattern, but couldn't think of many useful mixin functionality (because I'm not used to thinking that way most likely). So I was wondering what ...
7
votes
2answers
160 views
How do you define a package-private *trait* in Scala?
In Java, it is possible to create package-private interfaces. Looking at them with javap, you see that they lack the "public" visibility.
In Scala, you can declare a trait as private[package] or ...
7
votes
1answer
174 views
How does the Scala compiler handle concrete trait methods?
If I have the following Scala class:
abstract class MyOrdered extends Ordered[MyOrdered] {
def id: Int
def compare(that : MyOrdered) : Int =
if (that==null) 1 else (id-that.id)
}
...
5
votes
1answer
127 views
Scala trait - Is there an equivalent of Java interface public static field?
In Java:
public interface Foo {
public static final int Bar = 0;
}
And in Scala, how can I create a trait Foo that has Bar, and I can access it as: Foo.Bar?
5
votes
2answers
124 views
Using scala constructor to set variable defined in trait
I'm pretty new to scala and if I understand correctly: Traits are the closest thing to java interfaces & class constructors automatically set the variables.
But what if I have a class that ...
5
votes
4answers
232 views
How to declare traits as taking implicit “constructor parameters”?
I'm designing a class hierarchy, which consists of a base class along with several traits. The base class provides default implementations of several methods, and the traits selectively override ...
5
votes
3answers
921 views
Extending a Scala collection
I want a Map that throws on attempt to overwrite a value for existing key. I tried:
trait Unoverwriteable[A, B] extends scala.collection.Map[A, B] {
case class KeyAlreadyExistsException(e: ...
5
votes
4answers
628 views
can't extend two traits that have a method with the same signature?
Why is the error below? How to workaround it?
EDIT: I assumed that since A and B compile to (interface,class) pairs, it's a matter of choosing the right static method call to implement when ...
4
votes
1answer
202 views
Why do I need semicolons after these imports?
I never really used Traits much in Scala so far, and I want to change this. I have this code:
import tools.nsc.io.Path
import java.io.File
trait ImageFileAcceptor extends FileAcceptor {
override ...
3
votes
2answers
80 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 <: ...
3
votes
1answer
172 views
What is Scala's Comparable trait?
I am searching for Scala counterpart of C# IComparable, and I found Comparable trait. I mean -- Comparable is mentioned, but when I search for it at http://www.scala-lang.org/api/current/scala/ I get ...
3
votes
2answers
557 views
How to use a Scala Secure Trait in PlayFramework?
I'm trying to build a web application in Scala using Play Framework. When using Play Framework in Java I can use the Secure module to do authentication for pages that require logins. This is a common ...
3
votes
1answer
449 views
Scala initialization behaviour
Please look at the following code.
trait MyTrait { val myVal : String }
class MyClass extends MyTrait { val myVal = "Value" }
class MyClass2(val myVal: String) extends MyTrait
Why does the ...
3
votes
3answers
308 views
Restrictions in trait mixing
I want to have classes that can mix only specified traits:
class Peter extends Human with Lawful with Evil
class Mag extends Elf with Chaotic with Neutral
Is in scala a way to do this?
UPD:
trait ...
3
votes
1answer
162 views
trait implementation
If I have some traits like:
trait A {...}
trait B extends A{...}
trait C1 extends B{...}
trait C2 extends A{...}
I can write class in two ways (C1 and C2 add same functionality)
class Concrete1 ...
3
votes
2answers
678 views
Scala semantics of equals/hashCode for case classes with traits
I am a newcomer to Scala. In 2.7.7, the following code
abstract class C
case class CC() extends C
trait T
val c1 = CC()
val c2 = new CC() with T
println(c1.hashCode == c2.hashCode,c1 equals c2)
...
2
votes
0answers
93 views
Scala by Example - trait type parameter with context bounds mistake?
Reading the Scala by Example book and there is this example when Martin explains type bounds on page 54:
trait Set[A <: Ordered[A]] {
def incl(x: A): Set[A]
def contains(x: A): Boolean
}
and
...
2
votes
2answers
151 views
Scala related trait, abstract types
I have 2 related traits. Dao will be used be a class and DaoHelper will be used by Dao's companion object. I would like trait Dao to be able use functions defined in DaoHelper, the only way I could ...
2
votes
1answer
138 views
@Test method in Scala trait not found
does somebody know why @Test annotated methods which are inherited from a Scala trait are not found by the JUnit 4 test runner? It gives me "No JUnit tests found".
class FooTests extends BarTesting
...
2
votes
1answer
77 views
value foo in class MyJavaClass of type java.lang.String has incompatible type mixing in Java class and Scala trait
I have a Scala trait
trait MyTrait{
val foo: String
def bar = foo
}
and a Java class that provides foo
public class MyJavaClass {
public final String foo = "hello";
}
Now I try to mix ...
2
votes
1answer
80 views
'getActionAnnotation' not found in a trait extending Controller
When using play-scala module, I write a Secure trait as the following:
trait Secure extends Controller {
self:Controller =>
@Before
def checkAccess = {
if ...
2
votes
3answers
450 views
Best practice to implement Scala trait which supports method chaining
I want to make a trait which add some property to a class and make it possible to chain methods. Tested in Scala 2.8.1.
trait SomeProperty {
var prop : String = "default"
def setProp(s: ...
2
votes
4answers
193 views
Algorithm mixing
I have a class that extends Iterator and model an complex algorithm (MyAlgorithm1). Thus, the algorithm can advance step by step through the Next method.
class MyAlgorithm1(val c:Set) extends ...
2
votes
4answers
939 views
get const or non-const reference type from trait
I am writing a functor F which takes function of type void (*func)(T) and func's argument arg.
template<typename T>
void F(void (*func)(T), WhatTypeHere? arg)
{
func(arg);
}
Then functor ...
1
vote
3answers
104 views
Is this the correct way of translating Java interface into Scala?
I am starting to learn Scala and I will do a simple cross compiler.
I will support a small set of instructions like print.
Note: the code snippets are not tested or compiled.
Here is what I would do ...
1
vote
1answer
106 views
Reference a constructor argument from a trait
In Scala, is it possible for a trait to reference a named constructor argument of the class it is mixed into? The code below doesn't compile because ModuleDao's constructor argument is not a val as ...
0
votes
0answers
73 views
What is the shortest form of trait with cross-reference method with itself in Scala?
Note 1: I will probably get some "totally hazy" badge for this title ;-). Sorry, but it is hard to describe it in few words.
Note 2: the question officially is "what form...?" but read it also as "is ...
0
votes
2answers
166 views
The generic type information of fields in traits are missing?
I found this problem when I use Morphia in scala. It checks the fields of a class by reflection, and get necessary type information for mapping.
But if I use traits, and define some collection ...