Tagged Questions

7
votes
11answers
509 views

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

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 …
5
votes
15answers
476 views

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

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 …
4
votes
2answers
204 views

Scala Traits Usage

Can someone give explanation of Scala traits? I can't seem to find one anywhere. Also, what are the advantages of traits over extending an abstract class?
4
votes
2answers
361 views

Are there scala-like mixins for C++?

Scala Mixins
3
votes
2answers
143 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?
2
votes
1answer
77 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 …
2
votes
2answers
167 views

How can I have optional default constructor?

This class: template <class T> struct A { A() : t(T()) { } A(const T& t_) : t(t_) { } T t; }; won't compile if T doesn't have default constructor. This one: template …
2
votes
1answer
244 views

Mixins vs. Traits

What is the difference between Mixins and Traits? According to Wikipedia, Ruby Modules are sort of like traits. How so?
1
vote
2answers
242 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? …
1
vote
4answers
489 views

java traits or mixins pattern?

Is there a way to emulate mixins or traits in java? basically, I need a way to do multiple inheritance so I can add common business logic to several classes
0
votes
1answer
67 views

What do you call an object level equivalent of Mixin/Traits system, is there a Pattern name for it?

I previously asked about what Mixins were, and have begun to get the gist of what the pattern means. But it got me wondering if there is a common pattern name for doing something like Mixins at an …