I was going to ask this very same question, but it has already been asked. Unfortunately, none of the existing answers really answered the question. Not for me at least. I had to puzzle it out. I wanted to ask the same question as the OP, plus some. My question: WTF is this is_class_tester (void (U::*)(void)) stuff, and how does this construct work in the context of SFINAE (Substitution Failure Is Not An Error)?
With some simplification, Boost uses the construct as follows:
template <typename U>
char is_class_tester (void (U::*)(void));
template <typename U>
TypeBiggerThanChar is_class_tester (...);
template <typename T>
struct IsClass {
static const bool value = sizeof (is_class_tester<T>(0)) == 1;
};
Some observations:
- Those function templates are not really function templates. They are just forward declarations of a pair of overloaded function templates. The function templates themselves are never defined. Seeing that this is so and understanding how this works without needing the templates to ever be defined is one of the key elements in understanding this construct.
- The answers that talked about how to use this first function template missed the boat. You can't use this function template because its definition doesn't exist.
- Note that thanks to that arcane argument, the first of the two function templates make sense only when the type
T is a class. Fundamental types and pointers don't have member functions. The first declaration is invalid syntax for non-class types.
- Contrast that to the second of the overloaded function templates, which is valid syntax for all template parameters, and the function (if it existed) would take any arguments thrown at it thanks to its variadic ... argument. (Aside: This is vaguely reminiscent of my favorite one-line C program that can solve any problem in the world, given properly formatted user input.)
- While the function template declarations aren't usable as functions, the declarations can be used in simple compile-time queries such as a query about the return type. The actual definition isn't needed for this kind of query. Only the prototype is needed.
- This is exactly what the class template
IsClass does to define the compile-time constant IsClass<SomeType>::value.
So how does IsClass<SomeType>::value gets its value, and how does it do that at compile time? The compiler has to either make sense of sizeof (is_class_tester<T>(0)) or give up trying. We need to look at two cases based on whether the type SomeType is or is not a class.
Case 1: SomeType is a class.
Here both template declarations are valid syntax, so the compiler has two viable candidates to choose from. The compiler can and must the first function template because the selection rules dictate that a variadic function gets lowest priority in the selection. This selected function returns a char. Since sizeof(char) is guaranteed to be 1, IsClass<SomeType>::value will be true in the case that SomeType is a class.
Case 2: SomeType is not a class.
Here is where SFINAE kicks in. The first function template declaration is invalid syntax. The compiler can't just give up here because of SFINAE. It has to keep looking for an alternative, and the second function template declaration fits the bill. The only viable function returns a TypeBiggerThanChar, definition elided, but hopefully obvious. All we want is sizeof() this thing. It's bigger than a char, so IsClass<SomeType>::value will be false in the case that SomeType is not a class.
U::*denotes that the function the pointer points to is a member ofU, necessary because in C++, under the covers, the first argument of a member function is a pointer to what object to call it on. – Austin Hyde Jul 19 '10 at 12:07