在C ++ 11中使用SFINAE进行方法检测,我写了这个小小的运行示例:
#include <type_traits>
struct Foo
{
Foo();// = delete;
Foo(int);
void my_method();
};
template <typename T, typename ENABLE = void>
struct Detect_My_Method
: std::false_type
{
};
template <typename T>
struct Detect_My_Method<T, decltype(T().my_method())>
: std::true_type
{
};
int main()
{
static_assert(!Detect_My_Method<double>::value, "");
static_assert(Detect_My_Method<Foo>::value, "");
}
按预期工作。
但是如果我删除了Foo的空构造函数:
struct Foo
{
Foo() = delete;
Foo(int);
void my_method();
};
示例无法正常工作,我收到此错误消息:
g++ -std=c++11 declVal.cpp
declVal.cpp: In function ‘int main()’:
declVal.cpp:33:3: error: static assertion failed
static_assert(Detect_My_Method<Foo>::value, "");
问题:解释以及如何解决?
答案 0 :(得分:6)
当空构造函数删除时,构造:
decltype(Foo().my_method());
无效,编译器立即抱怨
error: use of deleted function ‘Foo::Foo()’
一种解决方案是使用std::decval<T>()
将任何类型T转换为引用类型,使其可以使用 成员函数在decltype表达式中而不需要去 通过构造函数。
因此取代:
template <typename T>
struct Detect_My_Method<T, decltype(T().my_method())>
: std::true_type
{
};
通过
template <typename T>
struct Detect_My_Method<T, decltype(std::declval<T>().my_method())>
: std::true_type
{
};
解决了这个问题。
学到的经验教训:
decltype(Foo().my_method()); // invalid
decltype(std::declval<Foo>().my_method()); // fine
不等同。
答案 1 :(得分:3)
此外,还有另一种定义测试的方法,既不需要引用,也不需要指向对象的指针,也不需要函数的特定签名:
template<class T>
typename std::is_member_function_pointer<decltype(&T::my_method)>::type test_member_function_my_method(int);
template<class T>
std::false_type test_member_function_my_method(...);
template<class T>
using has_member_function_my_method = decltype(test_member_function_my_method<T>(0));
用法:
static_assert(!has_member_function_my_method<double>::value, "");
static_assert(has_member_function_my_method<Foo>::value, "");