我想检查一下这个类是否有operator()。 我尝试了下面的SFINAE。
#include <type_traits> //for std::true_type/false_type
#include <utility> //for std::declval
template <typename T, typename... A>
class has_call_operator {
private:
template <typename U, typename... P>
static auto check(U u, P... p) -> decltype(u(p...), std::true_type());
static auto check(...) -> decltype(std::false_type());
public:
using type
= decltype(check(std::declval<T>(), std::declval<A>()...));
static constexpr bool value = type::value;
};
乍一看,这是正确的。
#include <iostream>
struct test {
void operator()(const int x) {}
};
int main()
{
std::cout << std::boolalpha << has_call_operator<test, int>::value << std::endl; //true
return 0;
}
但是,抽象类没有正确使用它。
#include <iostream>
struct test {
void operator()(const int x) {}
virtual void do_something() = 0;
};
int main()
{
std::cout << std::boolalpha << has_call_operator<test, int>::value << std::endl; //false
return 0;
}
为什么这段代码不起作用? 另外,你能让这段代码工作吗?
答案 0 :(得分:2)
您按值U
,因此它还需要构造类型。
通过const引用来修复它。
您可以查看is_detected
并获得类似的内容:
template <typename T, typename ...Ts>
using call_operator_type = decltype(std::declval<T>()(std::declval<Ts>()...));
template <typename T, typename ... Args>
using has_call_operator = is_detected<call_operator_type, T, Args...>;