http://en.wikipedia.org/wiki/Substitution_failure_is_not_an_error
#include <iostream>
template <typename T>
struct has_typedef_foobar {
// Types "yes" and "no" are guaranteed to have different sizes,
// specifically sizeof(yes) == 1 and sizeof(no) == 2.
typedef char yes[1];
typedef char no[2];
template <typename C>
static yes& test(typename C::foobar*);
template <typename>
static no& test(...);
// If the "sizeof" the result of calling test<T>(0) would be equal to the sizeof(yes),
// the first overload worked and T has a nested type named foobar.
static const bool value = sizeof(test<T>(0)) == sizeof(yes);
};
struct foo {
typedef float foobar;
};
int main() {
std::cout << std::boolalpha;
std::cout << has_typedef_foobar<int>::value << std::endl;
std::cout << has_typedef_foobar<foo>::value << std::endl;
}
以上示例显示了SFAINE。
答案 0 :(得分:4)
1)sizeof(char)
被定义为等于1.由于yes
是一个char数组的typedef,因此它的大小必须为1。同样,由于no
是两个字符数组的typedef,因此其大小必须为2 * sizeof(char)
,即2。
2)从不调用函数test
,因此定义是不必要的 - sizeof
运算符是编译时操作,因此编译器只查看返回类型的大小使用指定的模板参数实例化测试。因为它没有被调用,所以定义是不必要的,类似于制作私有的非定义复制构造函数,以使类不可复制构造。