Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C++

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

0.00/5 (No votes)
9 Feb 2012CPOL 8.5K  
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)