std::enable_if
出于教育原因,我正在玩弄 C++ 的 SFINAE 行为,并以相当简化的形式构建我自己的版本。我注意到在使用略有不同的实现细节时会出现不同的行为:
实现为不完整类型:
template <bool C, typename> struct enable_if; // incomplete type
template <typename T> struct enable_if<true, T> { typedef T type; };
实现为空类型:
template <bool C, typename> struct enable_if {}; // empty type
template <typename T> struct enable_if<true, T> { typedef T type; };
在 g++(4.8.1 和 4.3.2)上,两个版本的编译和行为方式相同。MSVC 2008 似乎只接受定义为空类型。
这两个定义都是有效的 C++ 吗,它们在行为上应该是等效的吗?