vote up 1 vote down star

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?

Note: I am aware of the simplests cases, such as CollegeStudent with one or two Traits:

class CollegeStudent extends Student with Worker
flag
??? asking a question and then asnwering itself – Peter Kofler Jul 5 at 18:36
I had tried it once with Eclipse a long time ago and this did not work. After the upgrade, and writting the test I thought: "Maybe i'll try something and see if i can find it myself". – Daniel Ribeiro Jul 5 at 20:59
2  
@Peter: there's nothing wrong with asking and answering, as long as it's a valid question. – Grundlefleck Jul 5 at 21:35

2 Answers

vote up 9 vote down check

It is easy, when declaring a class you just use the "with" keyword as often as you want

class CollegeStudent extends Student with Worker with Underpaid with Young

the order of the traits can be important if a trait is changing the behavior of the class, it all depends on traits you are using.

Also if you don't want to have a class which always uses the same traits you can use them later:

class CollegeStudent extends Student
new CollegeStudent with Worker with Underpaid with NotSoYoungAnymore
link|flag
vote up 5 vote down

Actually, this is easy...

class CollegeStudent extends Student with Worker with Underpaid with Young
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.