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 ...
23
votes
4answers
428 views

What kind of “Traits” are used/defined in the C++0x Standard

A trait in C++ encapsulates a family of operations that allow an Algorithm or Data Structure to operator with that type with which it is instantiated. char_traits are an example for grouping string- ...
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
15
votes
2answers
2k views

Mixins vs. Traits

What is the difference between Mixins and Traits? According to Wikipedia, Ruby Modules are sort of like traits. How so?
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 ...
12
votes
3answers
924 views

lambda traits inconsistency across C++0x compilers

I observed some inconsistency between two compilers (g++ 4.5, VS2010 RC) in the way they match lambdas with partial specializations of class templates. I was trying to implement something like ...
11
votes
6answers
283 views

(Re)named std::pair members

Instead of writing town->first I would like to write town->name. Inline named accessors (1, 2) are the best solutions I have found so far. My problem with named accessors is the loss of type ...
11
votes
2answers
494 views

Undefined template methods trick?

A colleague of mine told me about a little piece of design he has used with his team that sent my mind boiling. It's a kind of traits class that they can specialize in an extremely decoupled way. ...
11
votes
6answers
1k views

Difference between Abstract Class and Trait

What is the conceptual difference between abstract classes and traits?
10
votes
3answers
233 views

Is it possible to figure out the parameter type and return type of a lambda?

Given a lambda, is it possible to figure out it's parameter type and return type? If yes, how? Basically, I want lambda_traits which can be used in following ways: auto lambda = [](int i) { return ...
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
523 views

C++ traits example for this class

I haven't used the advanced features of C++ for a while and am refreshing my C++ knowledge.. Having said that, the concept of traits and policy based programming was something that I never really ...
8
votes
4answers
627 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
2answers
282 views

Is a C++ is_lambda trait, purely implemented as a library, impossible?

I have a question regarding C++0x lambdas. In my code, it would be beneficial to know whether or not a given type is the type of a C++0x lambda expression. To give an example: struct foobar { void ...
7
votes
2answers
264 views

Python: Metaclasses all the way down

I have an esoteric question involving Python metaclasses. I am creating a Python package for web-server-side code that will make it easy to access arbitrary Python classes via client-side proxies. ...
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 ...
7
votes
11answers
1k views

As a software developer, what are the traits that you look for in a manager? [closed]

Specifically, what are the best indicators to forecast if someone will be a great manager for a team of software developers, and also, someone that you would want to work for? Examples: education ...
7
votes
15answers
691 views

What are the traits that you look for in a software developer? [closed]

Specifically, what are the best indicators to forecast if someone will be a great developer, and also, someone that you would want to work with? Examples: education breadth of technical knowledge ...
6
votes
3answers
218 views

Detecting const-ness of nested type

Normally, if I need to detect whether a type is const I just use boost::is_const. However, I ran into trouble when trying to detect the const-ness of a nested type. Consider the following traits ...
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
2answers
377 views

Are Traits good or bad?

This is an open-ended question, but I would like to solicit some opinions from the SO community on Traits; do you think Traits in Squeak/Pharo are a good thing, or should you stay away from them and ...
6
votes
3answers
296 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
5answers
467 views

Class member functions instantiated by traits [policies, actually]

I am reluctant to say I can't figure this out, but I can't figure this out. I've googled and searched Stack Overflow, and come up empty. The abstract, and possibly overly vague form of the question ...
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
2answers
195 views

Accessing a class template parameter type inside a member function with a lambda fails

I have a class template with a member function that has a lambda which wants to use a class template parameter type. It fails to compile inside the lambda but succeeds, as anticipated, outside the ...
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
1answer
253 views

Rebuilding lazily-built attribute when an underlying attribute changes in Moose

I've got a Moose class with a lazy_build attribute. The value of that attribute is a function of another (non-lazy) attribute. Suppose somebody instantiates the class with a value of 42 for the ...
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
380 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
374 views

Traits and passing traits as template parameters

When is it practical to pass traits as template parameters rather than simply using some existing traits struct like typedef basic_ofstream< char, char_traits<char> > vs. typedef ...
4
votes
3answers
331 views

implement string class with custom behavior

In one of our class sir said that template allows one to customize behavior of class, and then he gave example of string class, that with few lines of code we can customize string class from STL, as ...
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
1answer
229 views

Is it possible to automatically coerce parameters passed to delegated methods (from the Array trait) using Moose/MooseX::Declare for Perl?

I'm creating a class which will contain a list of IP addresses, as Net::IP objects. I've wrapped the Net::IP object as a subtype (IPAddress), and defined a coercion from a string to IPAddress. Then ...

1 2 3 4