In computer programming, a trait is a collection of methods, used as a "simple conceptual model for structuring object oriented programs"
1
vote
0answers
13 views
What conceptual difference between traits and multiple inheritance?
From what I've read and what I've seen, I consider multiple inheritance as a bad practice, not by itself but because it leads beginner to use everywhere where more elegant design patterns might be ...
0
votes
1answer
53 views
Scala Data Modeling and Generics
I'm using the Play Framework and Squeryl to make a fairly basic front end for a database, but I know I'm rewriting too much code. I have different models to represent data in my db, and they all do ...
1
vote
1answer
55 views
Java 8 extension methods - why are they not called mixins or traits? [closed]
As far as I know, Groovy already has mixins, Scala has traits. C family has multiple inheritance. So why is the new functionality in Java called "extension methods"? Is it just a different name for ...
2
votes
2answers
58 views
Rust: using traits/typeclasses to implement a generic numeric function
I have a function which works to make a linked list of integers:
enum List<T> { Cons(T, ~List<T>), End }
fn range(start: int, end: int) -> ~List<int> {
if start >= end { ...
4
votes
1answer
172 views
Is there a better way to check if a STL container is a multi* container
During my work on writing a unit test for a framework that shall work with all kind of standard C++11 container I stepped over the problem that I want to create in a generic way test data.
Here I need ...
1
vote
1answer
22 views
multiple cpu usage when accessing data attached to traited classes
I have an application that uses a number of classes inheriting from HasTraits. Some of these classes manage access to data and others provide functions for analyzing that data. This works wonderfully ...
1
vote
1answer
41 views
PHP Trait method works only on first load
I'm using MAMP with PHP 5.4.10 and I have a problem with the following MWE:
<?php
trait T {
public function hello() { echo 'hello'; }
}
class A {
use T;
}
$a = new A();
$a->hello();
...
2
votes
0answers
64 views
Difference between abstract type in traits and type parameter [duplicate]
What is the difference in
trait MyTrait[T] {
def doSomething() : T
}
and
trait MyTrait {
type T
def doSomething() : T
}
when you're implementing or mixing them in, it's looks almost ...
1
vote
2answers
167 views
Missing parameter type for generic scan
I can't seem to understand why my program needs explicit parameter types for this case. Using the following method:
trait DistTraversableLike[+T, +Repr]
extends DistTraversable[T] {
self: Repr ...
3
votes
2answers
77 views
Scala : get mixin interfaces at runtime
I need to get all the interfaces at runtime from a given Class (all loaded in a ClassLoader).
For instance, if a class has been declared this way :
trait B
trait C
trait D
class A extends B with ...
0
votes
1answer
83 views
Symfony2 callback validation on trait
I want to use callback validation on a trait. For example:
<?php
namespace Vendor\Bundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use ...
0
votes
1answer
33 views
Enthought Traits with SQLAlchemy
The question is obvious: is it possible to use both ets Traits and SQLAlchemy for the same class? If no, what an alternative approach could you suggest?
1
vote
1answer
48 views
What is the effect of putting an @ after a traits name?
I stumbled upon this example for python traits ListEditor:
Can someone tell me why there is an "@" behind 'people' in the View definition(line 75)?
I couldn't find anything in the traits doc
2
votes
1answer
29 views
getting 'ObsoleteTrait' when adding a trait in a testCase
I'm having a problem.
I'm using a code in a testCase
It starts like this
|mapeos obj myClass|
myClass := Smalltalk at: #ClaseForTesting.
myClass addToComposition: TraitPruebaCondicion1.
the ...
0
votes
2answers
60 views
Scala: Example use for early definition / early initializer / pre-initialized fields
Scala allows you to make early definitions like so:
trait A {
val v: Int
}
class B extends { val v = 4 } with A
What is an example use of this feature?
2
votes
2answers
66 views
Scala: pre-initialize val while extending a class
How do I pre-initialize a val and extend a class in Scala?
e.g.:
object Start {
def main(args: Array[String]): Unit = {
new T()
new T2()
//T3?
}
}
class T extends{val z ...
4
votes
2answers
69 views
Create selector dynamically from string
I've made a program that uses reflection to add a Trait dynamically, and solves conflicts automatically in one predeterminated way.
It uses aliases. It's working (I think), but I have only a problem ...
5
votes
1answer
88 views
C++ - Know if a type / class is nested?
After seeing many examples of metaprogramming in C++ that allow for figuring out may properties of classes (such as knowing if a type is a specialization of a template ), or knowing if a class ...
1
vote
1answer
75 views
traits with immutable paramiters in scala
I want to make the following example so that Collar is immutable
trait Collar{
var text:String="";
}
class dog(val name:String){
def bark()= ...
}
val snoopy = new ...
1
vote
1answer
23 views
Finding current location of editors in traitsui
Is there a way to tell what is the current location of my editor on the screen? Also acceptable would be a way to tell what is the current location of an editor within the traitsui window in which it ...
1
vote
3answers
108 views
How does curly braces following trait instantiation work?
I find some confusing use of trait in some unittesting code, such as:
trait MyTrait {
val t1 = ... //some expression
val t2 = ... //some expression
}
And then instantiate the trait using new ...
2
votes
4answers
58 views
Delaying trait initialization
I need a smart mechanism for component composition which allows mixed in traits to initialize after the composed component. The following throws a NullPointerException:
class Component {
def ...
0
votes
0answers
44 views
chaco traits editor like in the good old days?
Page 15 of http://ftp.ntua.gr/mirror/python/pycon/papers/chaco.pdf is exactly what I have been looking for for my chaco plots: an editor that allows one to change the properties of the different ...
3
votes
1answer
72 views
Genericizing Constructors in Scala
I've been doing some exercises in Scala. I thought I might try to derive a method of creating incompatible value types that cannot be accidentally assigned to each other, using the newly added AnyVal ...
0
votes
1answer
56 views
Enthought enaml tableeditor
I have an object with a custom table editor attached to the view. This table editor can have some of its column deleted by user input. When it is the case I call an update function, this function is ...
1
vote
1answer
61 views
Groovy equivalent to Scala trait stackable modifications?
I have been going through the Programming Scala book(by Martin Odersky,Lex Spoon,Bill Venners ed1) and came across traits. A section that I find interesting is stackable modifications. The example ...
1
vote
2answers
62 views
In what situations are the parameters used to instantiate a template are not available?
In this article Traits: a new and useful template technique ,traits was introduced traits in C++ first time, and the author emphasized the following:
template <class numT>
class matrix {
...
3
votes
1answer
106 views
Extending Java Class with Scala Trait
I would like to define a class ContextItem as the extension of java class Predicate with a trait Confidence.
Confidence is a simple trait which simply adds a confidence field to whatever it extends.
...
0
votes
3answers
64 views
C++ change behavior of template methods with traits
I have a template and I have the methods T get(int i) and set(int i, T val). I have to make traits class which change not behavior but the arguements which set and get have.
template<typename ...
0
votes
1answer
60 views
Scala type constraints confusing error
This code:
trait Base[+K <: Option[Int]] {
val a: K = None
}
class GuaranteedA extends Base[Some[Int]] {
override val a = Some(1)
}
produces an error:
<console>:8: error: type ...
1
vote
2answers
88 views
Abstract private fields in Scala trait
I happened to find that it's not allowed to have abstract private fields in
a trait, that is,
trait A1 {
//private val a: Int // Not allowed
protected val b: Int // OK
}
And ...
0
votes
1answer
60 views
cannot convert anonymous enum in initialization
Why does the compiler complain here?
enum jit_ptx_type {f32=0,f64=1,u16=2,u32=3,u64=4,s16=5,s32=6,s64=7,u8=8,b16=9,b32=10,b64=11,pred=12 };
//
// MATCHING C TYPES TO PTX TYPES
//
...
0
votes
1answer
60 views
Reacting to a Button Pressed by the user in a EPD Traits view?
I'm using EPD traits for a basic GUI interface. I'm able to pop up a settings window using code like this:
settings_w.configure_traits(kind="livemodal")
The window has 'OK' and 'Cancel' buttons ...
2
votes
1answer
117 views
redundant getters and setters in lazy-loading and dependency-injection pattern
I'm implementing the lazy initialization and dependency injection pattern in my PHP application at the moment and face the following question:
Every class has a bunch of getter and setter methods ...
0
votes
0answers
36 views
Drag on scatterplot and coordinates retrieval in chaco / traits
I have taken the file:
https://github.com/enthought/chaco/tree/master/examples/demo/edit_line.py
and attempted to modify it so that only one point is kept on the graph and
that its coordinates get ...
3
votes
2answers
144 views
Cannot trait an inherited class as base with SFINAE
I create a container_traits class to check if a container is std::array or not.
But it fails to catch a container inherited from std::array.
Any solutions?
#include <vector>
#include ...
2
votes
2answers
120 views
case object of generic trait
In Scala: I would like to define a type Message[T] (it needs to have this signature), which can be a message holding some data of type T, or an implicit message. I have
trait Message[T]
case object ...
0
votes
2answers
77 views
TraitsUI TextEditor enter_set causes input to be rejected
I am trying to build a traitsui application. As part of this application, I listen to a float that the user inputs. The editor for this float by default is a TextEditor with auto_set on. However, ...
0
votes
1answer
71 views
react on events generated by chaco tools: how to get values out of a chaco tool when an event is fired ?
actually this should be a pretty simple question, but I am experiencing the quite steep learning curve of chaco and traits...
I am currently writing an application to plot a medical image using chaco ...
3
votes
1answer
111 views
Using traits over classes, why?
This is how classes do it?
Class Main
{
$this->a = new A();
$this->b = new B();
$this->c = new C();
$this->b->doTranslate($this->a->saySomething());
}
And ...
0
votes
1answer
34 views
TraitsUI, sharing an object
I am building a gui using HasTraits objects. I have a main object, and then objects for each component of the gui.
I would like to share an object across multiple components. For example, i have a ...
1
vote
1answer
99 views
python Traits: Column of Buttons in Table
I would like to add a Button to the end of every line in a table.
The following code results in an PyDeadObjectError when closing the window:
from traits.api import HasTraits,Str,Int,Button,Instance
...
1
vote
3answers
111 views
How to deep copy classes with traits mixed in
Here's some sample scala code.
abstract class A(val x: Any) {
abstract def copy(): A
}
class b(i: Int) extends A(i) {
override def copy() = new B(x)
}
class C(s: String) extends ...
1
vote
0answers
103 views
Is it possible to instantiate an instance of class, passed as parameter to generic trait in Scala?
I have the following code, written in Scala 2.10.0:
trait A[T <: B] {
self : { def foo() } =>
val action : ()=>Unit = this.foo _
//wanna make default for this
val construction : ...
1
vote
1answer
121 views
Can I dynamically construct a trait in Scala that is computed based on the class it extends?
I want to accomplish something a little different from standard mixins. I want to construct a trait whose new fields are computed based on the fields of the class (or trait) it extends.
For instance, ...
0
votes
0answers
77 views
how to draw on a matplotlib canvas created in a different class
I have one class:
class CalcPlot(HasTraits):
display = Instance(Figure)
ax1 = self.display.axes[0]
x = np.linspace(0,10,11)
y = np.linspace(0,10,11)
self.display = ...
0
votes
1answer
108 views
Symfony2 Timestable trait: “Column 'createdAt' cannot be null”
I have a pretty standard Entity with the correct imports:
/**
* Budhaz\aMailerBundle\Entity\Instance
*
* @ORM\Table()
* @ORM\Entity
*/
class Instance {
use TimestampableEntity;
/** ...
0
votes
0answers
37 views
mayavi (install/run problems) — Cannot override 'content_color' trait definition [ enthought ]
I am trying to get mayavi2 up and running after downloading the .egg from enthought
i have installed all the dependencies [vtk, tvtk, traits, traitsGUI, traitsBackendwx, configobj, numpy, and every ...
2
votes
2answers
71 views
Sharing functions across unrelated classes
I'm still working my head around object orientated programming and getting away from procedural programming. Although I use classes I know I still don't write my code fully OOP. I've been reading and ...
1
vote
1answer
90 views
What does class Foo {this: SomeTraitType => mean?
I have this question based on the Akka Concurrency pre-print (the final version isn't available yet), where this is used without explanation.
In version 1 of the class, they have:
class Altimeter ...



