I need to create a template function like this:

template<typename T>
void foo(T a)
{
   if (T is a subclass of class Bar)
      do this
   else
      do something else
}

I can also imagine doing it using template specialization ... but I have never seen a template specialization for all subclasses of a superclass. I don't want to repeat specialization code for each subclass

link|improve this question

78% accept rate
feedback

3 Answers

up vote 3 down vote accepted

You can do what you want but not how you are trying to do it! You can use std::enable_if together with std::is_base_of:

#include <iostream>
#include <utility>
#include <type_traits>

struct Bar { virtual ~Bar() {} };
struct Foo: Bar {};
struct Faz {};

template <typename T>
typename std::enable_if<std::is_base_of<Bar, T>::value>::type
foo(char const* type, T) {
    std::cout << type << " is derived from Bar\n";
}
template <typename T>
typename std::enable_if<!std::is_base_of<Bar, T>::value>::type
foo(char const* type, T) {
    std::cout << type << " is NOT derived from Bar\n";
}

int main()
{
    foo("Foo", Foo());
    foo("Faz", Faz());
}

Since this stuff gets more wide-spread, people have discussed having some sort of static if but so far it hasn't come into existance.

Both std::enable_if and std::is_base_of (declared in <type_traits>) are new in C++2011. If you need to compile with a C++2003 compiler you can either use their implementation from Boost (you need to change the namespace to boost and include "boost/utility.hpp" and "boost/enable_if.hpp" instead of the respective standard headers). Alternatively, if you can't use Boost, both of these class template can be implemented quite easily.

link|improve this answer
1  
@Cat Plus Plus: er, yes... Thanks for fixing it! ;-) – Dietmar Kühl Jan 8 at 3:38
1  
I believe that ::std::enable_if is only part of C++ in C++11. It can be found in Boost though. – Omnifarious Jan 8 at 3:50
1  
@Omnifarious yes, both std::enable_if and std::is_base_of are "only" part of the current C++ standard (C++2011), not its predecessor (C++2003). If you have to use a compiler which isn't conforming the current standard, you can still implement a version of both enable_if and is_base_of: they are both fairly trivial to implement. However, Boost indeed provides an implementation. – Dietmar Kühl Jan 8 at 3:59
I'm having issues with my compiler on compiling this . Could you please provide the boost version same? Thank you so much! – Abhishek Anand Jan 8 at 4:14
1  
@AbhishekAnand: you mean the Boost version of the above code? Well, I could but it is exactly identical except that you need to replace std by boost. Obviously, you also need to include the relevant headers. In C++2011 these are <utility> and <type_traits>. In Boost they are "boost/utility.hpp" and "boost/type_traits.hpp". If this doesn't help, please let me know the compiler error - maybe there is a typo somewhere... – Dietmar Kühl Jan 8 at 4:20
show 4 more comments
feedback

I would use std::is_base_of along with local class as :

#include <type_traits>  //you must include this: C++11 solution!

template<typename T>
void foo(T a)
{
   struct local
   {
        static void do_work(T & a, std::true_type const &)
        {
            //T is derived from Bar
        }
        static void do_work(T & a, std::false_type const &)
        {
            //T is not derived from Bar
        }
   };

   local::do_work(a, std::is_base_of<Bar,T>());
}

Please note that std::is_base_of derives from std::integral_constant, so an object of former type can implicitly be converted into an object of latter type, which means std::is_base_of<Bar,T>() will convert into std::true_type or std::false_type depending upon the value of T. Also note that std::true_type and std::false_type are nothing but just typedefs, defined as:

typedef integral_constant<bool, true>  true_type;
typedef integral_constant<bool, false> false_type;
link|improve this answer
Wouldn't local::do_work(a, std::is_base_of<Bar, T>()); work? – Cat Plus Plus Jan 8 at 3:53
@CatPlusPlus: What would the type of second parameter of do_work? – Nawaz Jan 8 at 3:57
@CatPlusPlus: Oops, I didn't know std::is_base_of derives from std::integral_constant. Yes it will work too. – Nawaz Jan 8 at 3:59
Unfortunately this doesn't work on all compilers. GCC and Clang don't instantiate local classes or members of them if they are unused. But Comeau and perhaps other compilers (based on EDG, at least intel's ICC) do (and indeed I'm not sure what compiler is correct, but I tend to think EDG is correct in this case). That would mean your workaround doesn't work. – Johannes Schaub - litb Feb 22 at 18:08
feedback

I like this clear style:

void foo_detail(T a, const std::true_type&)
{
    //do sub-class thing
}

void foo_detail(T a, const std::false_type&)
{
    //do else
}

void foo(T a)
{
    foo_detail(a, std::is_base_of<Bar, T>::value);
}
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.