The static-polymorphism tag has no wiki summary.
5
votes
1answer
75 views
+50
UML and static polymorphism
I have an object which is instantiated during compilation according to the build configuration. As far as the surrounding software considered, the object exposes the same interface. I would like to ...
1
vote
1answer
94 views
Selecting which CRTP base class to derive from
Let's say that I have the following very simple CRTP base class:
template< class D, class T >
struct Base
{
T foo()
{
return static_cast< D* >(this)->foo_i();
...
1
vote
2answers
138 views
Static polymorphism and method names c++
When I use static polymorphism (CRTP), is there a nice way to give polymorphic methods their names?
template <class Derived>
struct Base
{
void interface()
{
// ...
...
0
votes
2answers
132 views
allocating memory for derived class members based on boost smart pointers in the base class through CRTP
///////This part is to provide some background info and can be skipped///////
I am working on a template library which heavily relies on the use of the curiously recurring template pattern (primarily ...
0
votes
2answers
89 views
curiously recurring templates with template leaf classes (or any similar alternatives?)
I think curiously recurring template pattern is suitable for my application, but I need for the classes to operate on the user defined types (i.e. I want to provide template classes). I was wondering ...
11
votes
4answers
961 views
Dyamic vs Static Polymorphism in C++ : which is preferable?
I understand that dynamic/static polymorphism depends on the application design and requirements. However, is it advisable to ALWAYS choose static polymorphism over dynamic if possible? In particular, ...
1
vote
0answers
90 views
What combination of boost tools allows to use abstract factory design pattern?
From what I understand, a combination of boost::function, boost::factory and std::map allows for a creation of object factory. ...
1
vote
1answer
87 views
why AbstractFactoryUnit has dynamic instead of static polymorphism?
I'm in a process of learning modern c++ and focusing on abstract factory at the moment, and from what I understand, one of the main ideas for Loki is to avoid "virtual" (dynamics polymorphism) that is ...
6
votes
4answers
144 views
Scala type inference fails to note that these types are identical, whatever they are
I have a design pattern here where there is an object generator (MorselGenerator and its children), any instance of which always generates the same exact type of object (Morsels and its children), but ...
2
votes
2answers
76 views
Return reference to this and inheritance
For some syntactic sugar I want to return a reference to this, but when inherited, the function should return the type of the child class:
class base {
T &operator!() { return *this; }
};
base ...
8
votes
2answers
390 views
Is there a generic way to adapt a function template to be a polymorphic function object?
I have some function templates, for example
template <typename T>
void foo(T);
template <typename T>
void bar(T);
// others
and I need to pass each one to an algorithm that will call ...
4
votes
3answers
189 views
advice for static template class
I have this problem (histogramming). I've a real space: [a,b] partitioned in some way ([a0=a, a1, a2, ..., b]). The partitioning may be with equal space (a1 - a0 = a2 - a1 = ...) or variables.
I need ...
0
votes
0answers
213 views
What are performance impact to a compile-time polymorphism class if it is created inside a run-time polymorphism based class?
Consider the following two situations
I have a class A which is based on compile time polymorphism. There is another class B which is using run-time polymorphism feature for its construction ...
3
votes
5answers
960 views
why doesn't haskell have heterogeneous lists
I don't understand why I can't construct a list that looks like [1,"1",1.1] in haskell. I don't think it's static typing that gets in the way because I thought that head would now have an ill defined ...
8
votes
2answers
3k views
Static polymorphism definition and implementation
I have some questions about the concept of static polymporhism I somethimes hear about; you may interpret them primarily in the context of C++, but I'd appreciate language-agnostic answers where ...
2
votes
4answers
2k views
PHP: polymorphic abstract static methods
I'm trying to do something like this but i don't succeed.
abstract class Animal
{
abstract static function getName();
static function sayName() { echo self::getName(); }
}
thanks!
3
votes
3answers
388 views
What's the use of the derived class as a template parameter?
What's the purpose of this pattern? What is it called? It looked very strange when I saw it the first time, though I have now seen it many times.
template<typename Derived>
struct Base {
...
5
votes
2answers
451 views
Does C++ have a static polymorphism implementation of interface that does not use vtable?
Does C++ have a proper implementation of interface that does not use vtable?
for example
class BaseInterface{
public:
virtual void func() const = 0;
}
class BaseInterfaceImpl:public BaseInterface{
...