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()
     {
        // generic stuff here
     }
     void ProblematicMethod()
     {
         static_cast<Derived*>(this)->MethodToOverride();
     } 
 };

that is as usual intended to be used like this:

 class ConcreteDerived : public Base<ConcreteDerived> {
     void MethodToOverride()
     {
        //custom stuff here, then maybe
        Base::MethodToOverride();
     }
 };

Now that static_cast bothers me. I need a downcast (not an upcast), so I have to use an explicit cast. In all reasonable cases the cast will be valid since the current object is indeed of the derived class.

But what if I somehow change the hierarchy and the cast now becomes invalid?

May I somehow enforce a compile-time check that an explicit downcast is valid in this case?

link|improve this question

76% accept rate
1  
You do not need to have a MethodToOverride in Base class. – ysdx May 6 '11 at 6:51
1  
@ysdx: I need if I want it to be optionally overridable or have some common implementation and I do want that. – sharptooth May 6 '11 at 6:58
1  
But if you have the function in the base class, the call will always "work", as there is a function to call. – Bo Persson May 6 '11 at 7:03
@Bo Persson: Yes, that's why I need a downcast to have the most derived function to call and that most derived function may call the base version if it wants. – sharptooth May 6 '11 at 7:10
1  
And you are not considering using a virtual function for that? :-) – Bo Persson May 6 '11 at 7:11
show 5 more comments
feedback

4 Answers

up vote 4 down vote accepted

At compile-time you can only check the static types, and that's what static_cast already does.

Given a Base*, it is only, and can only be, known at run-time what its dynamic type is, that is, whether it actually points to a ConcreteDerived or something else. So if you want to check this, it has to be done at runtime (for example by using dynamic_cast)

link|improve this answer
1  
But to use dynamic_cast you would need to have some virtual functions, which i believe this construct tries to avoid. – Bo Persson May 6 '11 at 7:00
true. My point is just that this check can only be performed at runtime, which carries an associated cost, as you point out – jalf May 6 '11 at 7:20
feedback

For extra safety, you could add a protected constructor to Base, to make sure that something is derived from it. Then the only problem would be for the really stupid:

class ConcreteDerived : public Base<SomeOtherClass>

but that should be caught by the first code review or test case.

link|improve this answer
feedback

To expand on what @Bo Persson said, you can do a compile time check in said constructor using for example Boost.TypeTraits or C++0x/11 <type_traits>:

#include <type_traits>

template<class Derived>
struct Base{
  typedef Base<Derived> MyType;

  Base(){
    typedef char ERROR_You_screwed_up[ std::is_base_of<MyType,Derived>::value ? 1 : -1 ];
  }
};

class ConcreteDerived : public Base<int>{
};

int main(){
  ConcreteDerived cd;
}

Full example on Ideone.

link|improve this answer
1  
Could you please replace the F-word with "you screwed it" so that a rain of downvotes and flags doesn't fall on you? – sharptooth May 6 '11 at 7:30
@sharptooth: Ché, censoring in here... – Xeo May 6 '11 at 7:32
little issue here, the question is not only about making sure that the parameter Derived is effectively derived from Base<..>, but also that the current value of this is effectively Derived (or a derived type of it), which you can only check at runtime. – Matthieu M. May 6 '11 at 9:26
@Matthieu: My answer is an extension to @Bo Personn's, so what he said about a protected constructor holds for me too. And then, if this is anything else than something derived, there's something very very wrong. – Xeo May 6 '11 at 9:29
I agree that in CRTP this should be okay, but the question is asking for a way to detect when it's not. – Matthieu M. May 6 '11 at 9:48
feedback

When you do something like below:

struct ConcreteDerived : public Base<Other>  // Other was not inteded

You can create objects of the class (derived or base). But if you try calling the function, it gives compilation error related to static_cast only. IMHO it will satisfy all practical scenarios.

If I correctly understood the question, then I feel the answer is in your question itself. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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