Tagged Questions

The curiously recurring template pattern (CRTP) is a C++ idiom in which a class X derives from a class template instantiation using X itself as template argument.

learn more… | top users | synonyms

33
votes
6answers
5k views

Java Enum definition

I thought I understood Java generics pretty well, but then I came across the following in java.lang Class Enum<E extends Enum<E>> Could someone explain how to interpret this type ...
17
votes
5answers
18k views

invalid use of incomplete type

I'm trying to use a typedef from a subclass in my project, I've isolated my problem in the example below. Does anyone know where I'm going wrong? template<typename Subclass> class A { ...
15
votes
1answer
1k views

What is the curiously recurring template pattern (CRTP)?

Can anyone please provide a good explanation for CRTP with an code example? Please do not ask me to refer a book, I already do have the books and refer them but I usually find the ...
12
votes
5answers
5k views

CRTP to avoid dynamic polymorphism

How can I use CRTP in C++ to avoid the overhead of virtual member functions?
10
votes
2answers
173 views

Reflexive type parameter constraints: X<T> where T : X<T> ‒ any simpler alternatives?

Every so often I am making a simple interface more complicated by adding a self-referencing ("reflexive") type parameter constraint to it. For example, I might turn this: interface ICloneable { ...
10
votes
6answers
194 views

reusing the copy-and-swap idiom

I'm trying to put the copy-and-swap idiom into a reusable mixin: template<typename Derived> struct copy_and_swap { Derived& operator=(Derived copy) { Derived* derived = ...
9
votes
2answers
599 views

C++ static polymorphism (CRTP) and using typedefs from derived classes

I read the Wikipedia article about the curiously recurring template pattern in C++ for doing static (read: compile-time) polymorphism. I wanted to generalize it so that I could change the return types ...
9
votes
3answers
380 views

How to write curiously recurring templates with more than 2 layers of inheritance?

All the material I've read on Curiously Recurring Template Pattern seems to one layer of inheritance, ie Base and Derived : Base<Derived>. What if I want to take it one step further? #include ...
7
votes
1answer
63 views

How to get the size of a template argument when using CRTP?

In VC++10 the following example fails with error C2027: "use of undefined type 'X'". However g++ 4.6 compiles it just fine. template<class T> class C { static const size_t size = sizeof(T); ...
7
votes
3answers
91 views

C++ CRTP and accessing derived's nested typedefs from base

edit: I'll put a github link here when I am done altering my design for anyone who is interested. Background I'm replacing a boost::intrusive, intrusive_set, with my own implementation as 64-bit ...
7
votes
4answers
164 views

How to implement a compile-time check that a downcast is valid in a CRTP?

I have a plain old CRPT (please don't get distracted by access restrictions - the question is not about them): template<class Derived> class Base { void MethodToOverride() { ...
6
votes
1answer
679 views

Mixins, variadic templates, and CRTP in C++

Here's the scenario: I'd like to have a host class that can have a variable number of mixins (not too hard with variadic templates--see for example ...
6
votes
9answers
474 views

Just-In-Time Derivation

There's a less common C++ idiom that I've used to good effect a few times in the past. I just can't seem to remember if it has a generally used name to describe it. It's somewhat related to mixins, ...
5
votes
3answers
286 views

No class template named X in templated class

When tryin to compile this (CRTP-like) code with GCC 4.6.0: template<template<class> class T> struct A; template<class T> struct B: A<B<T>::template X> { template ...
5
votes
5answers
232 views

How to avoid errors while using CRTP?

Using CRTP sometimes I write a code like this: // this was written first struct Foo : Base<Foo, ...> { ... }; // this was copy-pasted from Foo some days later struct Bar : Base<Foo, ...
5
votes
1answer
602 views

Mixing policy-based design with CRTP in C++

I'm attempting to write a policy-based host class (i.e., a class that inherits from its template class), with a twist, where the policy class is also templated by the host class, so that it can access ...
4
votes
1answer
107 views

CRTP versus direct implementation of the function in the “derived”

I am trying to get a better understanding of CRTP. So far my understanding is that it allows one to write a functions like the following. template <class T> void foo(Base<T> x ) { ...
4
votes
1answer
99 views

How to get generic type definition for CRTP type

Given the following CRTP type in C#: public abstract class DataProviderBase<TProvider> where TProvider : DataProviderBase<TProvider> { } How would I get its generic type definition ...
4
votes
2answers
398 views

Use Curiously Recurring Template Pattern (CRTP) with additional type parameters

I try to use the Curiously Recurring Template Pattern (CRTP) and provide additional type parameters: template <typename Subclass, typename Int, typename Float> class Base { Int *i; ...
4
votes
1answer
232 views

C++: With CRTP, class defined in the derived class is not accessible in the base class

Here is the (simplified) base class: template <class T> class SharedObject { protected: QExplicitlySharedDataPointer <typename T::Data> d; }; And here is the derived: class ...
4
votes
3answers
341 views

Can a Delphi generic class descend from its class argument?

I've been trying to define a generic, inheritable TSingleton class. Here's what I had in progress: TSingleton<RealClass, InheritsFrom : class> = class(InheritsFrom) strict private class ...
4
votes
3answers
445 views

Would using a virtual destructor make non-virtual functions do v-table lookups?

Just what the topic asks. Also want to know why non of the usual examples of CRTP do not mention a virtual dtor. EDIT: Guys, Please post about the CRTP prob as well, thanks.
3
votes
1answer
74 views

CRTP with Protected Derived Member

In the CRTP pattern, we run into problems if we want to keep the implementation function in the derived class as protected. We must either declare the base class as a friend of the derived class or ...
3
votes
1answer
53 views

crtp and type visibility

I have this puzzle which I am trying to solve, and fundamentally it boils down to the following example: template <typename CT> struct A { typedef typename CT::VALUE_T FOO; // FOO is ...
3
votes
1answer
60 views

Using a mixin (?) to make stream i/o easier

Since many students I work with on common code have some problems comprehending proper stream operator overloading, I tried to create a helper template (don't know if this is a real mixin) to ...
3
votes
2answers
110 views

CRTP'ed Containers

I am cutting my teeth at some template programming and I am very new to this. What I want to implement are a few CRTP classes that contain an STL container. Let class A{}; serve as an example for the ...
3
votes
1answer
148 views

Java generics - How do I read this: Foo<T extends Bar<? extends Foo<T>>>?

I am bringing myself up to date with Java generics (having worked for a loooong time on legacy code with JDK 1.4... 1.3 even) and I don't quite understand this: public class Foo<T extends Bar<? ...
3
votes
2answers
234 views

CRTP fails w/ decltype

template<typename T> struct A { auto func() -> decltype(T::func()) { return T::func(); } }; class B : public A<B> { void func() { } }; Seems pretty simple to ...
3
votes
1answer
367 views

C++ Compiler error with CRTP

I have the following class hierarchy: template <typename T> class base { public: void f() {} }; class class_a : public base<class_a> {}; class class_b : public base<class_b>, ...
3
votes
2answers
521 views

C++ CRTP issues, MSVC error C2039

MSVC 2008 won't compile this code: template <class Derived> struct B { typename Derived::type t; }; struct D : B<D> { typedef int type; }; void main() { D d; } The error I ...
2
votes
2answers
85 views

Issue refactoring curiously recurring template pattern

The following code fails to compile on g++ 4.6.1: template<class Base> struct GetBase { Base * getBase() { return static_cast<Base *>(this); } }; template<class Derived> ...
2
votes
1answer
37 views

Templatized derived class inheriting through CRTP class, access to base class member object

If I try to call a member function of a member of the base class from a template class on the other end of the inheritance hierarchy, class memberobj {public: void bar(){}}; class basis {public: ...
2
votes
1answer
75 views

How to store or forward the type of a CRTP template class

General idea: A pair of classes, a manager that creates workers. Each accepts a set of policies that customize behavior. Each policy has a part that affects the manager (does some setup) and a part ...
2
votes
5answers
126 views

C++ CRTP class hierachy

From Wikipedia: // The Curiously Recurring Template Pattern (CRTP) template <typename T> struct base { // ... }; struct derived : base<derived> { // ... }; Now if I want ...
2
votes
2answers
79 views

How to detect non-virtual-override at compile or runtime

I want to detect if a function was (statically) overridden in a derived class: template< typename T > struct A{ void func(){ static_cast<T*>(this)->func(); } }; struct B: A<B>{}; ...
2
votes
4answers
213 views

CRTP to avoid virtual member function overhead

In C++: CRTP to avoid dynamic polymorphism, the following solution is proposed to avoid the overhead of virtual member functions and impose a specific interface: template <class Derived> struct ...
2
votes
4answers
144 views

Any good way to declare method as `return this`?

Something like this: class C { typeof(this) foo() { return this; } } Well, I know it's impossible in Java 6, so I'll be glad to hear if I can do it in Java 7. EDIT This should be useful for ...
2
votes
2answers
229 views

Using decltype in a late specified return in CRTP base class

I'm trying to use decltype in the late specified return of a member function in a CRTP base class and it's erroring with: invalid use of incomplete type const struct ...
2
votes
5answers
146 views

C++ error enum and CRTP

template<class T> struct broker { typedef T typeBroker; static std::vector<std::string> extractListBroker(const std::string& broker) { ...
2
votes
2answers
201 views

This is CRTP usage for static polymorphism but without implementation of a derived function. Compiles both in gcc and visual studio. Why?

#include <iostream> template <class Derived> class Base { public: void method1() { static_cast<Derived*>(this)->method1(); } void method2() { ...
2
votes
3answers
148 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 { ...
2
votes
2answers
508 views

C++ CRTP(template pattern) question

following piece of code does not compile, the problem is in T::rank not be inaccessible (I think) or uninitialized in parent template. Can you tell me exactly what the problem is? is passing rank ...
2
votes
2answers
460 views

Creating circular generic references

I am writing an application to do some distributed calculations in a peer to peer network. In defining the network I have two class the P2PNetwork and P2PClient. I want these to be generic and so have ...
2
votes
3answers
622 views

Inherit from a template parameter and upcasting back in c++

I have tried to use this code in VS2008 (and may have included too much context in the sample...): class Base { public: void Prepare() { Init(); CreateSelectStatement(); ...
2
votes
3answers
1k views

enums and generic methods in java

I still have trouble with some corner cases in the java generics system. I have this method (I'm only interested in the signature) : interface Extractor<RETURN_TYPE> { public <U ...
2
votes
2answers
2k views

How to partially specialize a class template for all derived types?

I want to partially specialize an existing template that I cannot change (std::tr1::hash) for a base class and all derived classes. The reason is that I'm using the curiously-recurring template ...
1
vote
2answers
86 views

How does compiler evaluate `typeid` operator?

Here is some CRTP based template code that I used to try and resolve this question: Requiring overridden virtual functions to call base implementations. I would post code here, but the lines are long ...
1
vote
2answers
48 views

Various errors with CRTP (C++)

I know I've just asked a question about this, but I cannot figure out what I'm doing wrong. I've rewritten just the small part and cannot find any errors (used C++ function in parent return child as ...
1
vote
2answers
70 views

Return type when using curiously recurring template pattern

I'm using the curiously recurring template pattern (CRTP) in my C# project, but I'm having some problems. Code snipped from the link above: public abstract class Base<T> where T : ...
1
vote
0answers
115 views

run-time vs compile-time vs link-time polymorphism [closed]

I need to abstract the way parts of my system work, and polymorphism is a good fit. But which one: run-time, compile-time, or link-time. Which would you prefer and why for these two: The ...

1 2