Click here to Skip to main content
15,879,239 members
Articles / Programming Languages / C++
Alternative
Tip/Trick

Quickly Check whether C++ Template Instances have the Same Parameters

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
9 Feb 2012CPOL 7.8K   2
This post helps to quickly check whether C++ template instances have the same parameters.

Setting up a custom type identification mechanism only makes sense if RTTI is not available or you cannot guarantee that it is consistent. That might be the case on some platforms with dynamic libraries.

A simple static_cast will not work for all possible inheritance paths. Also, your method generates a different id in each translation unit ChildClass<t> is pulled into. I have yet to see a solution for "safe" class IDs mechanism fundamentally different from that used by COM.

So if you have RTTI, you just do this:

C++
virtual bool equals(BaseClass *other) const
{
    if (auto temp = dynamic_cast<ChildClass<T>*>(other)) {
        //...
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralIs this faster than my method? It is surely safer, but my go... Pin
Sebastian Krysmanski7-Feb-12 21:13
Sebastian Krysmanski7-Feb-12 21:13 
GeneralRe: Faster? Probably not, a dynamic_cast can have considerable c... Pin
Paul Michalik9-Feb-12 20:34
Paul Michalik9-Feb-12 20:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.