如何检查成员函数是否具有const重载?

时间:2016-02-11 19:39:43

标签: c++ templates c++11

让我说我有

function tmpf() { echo aaa; }
stdbuf -o 0 tmpf

假设我有一个模板化函数,我可以判断给定类型是否具有struct foo { void ham() {} void ham() const {} }; struct bar { void ham() {} }; 的常量重载?

5 个答案:

答案 0 :(得分:6)

使用

#define DEFINE_HAS_SIGNATURE(traitsName, funcName, signature)               \
    template <typename U>                                                   \
    class traitsName                                                        \
    {                                                                       \
    private:                                                                \
        template<typename T, T> struct helper;                              \
        template<typename T>                                                \
        static std::uint8_t check(helper<signature, &funcName>*);           \
        template<typename T> static std::uint16_t check(...);               \
    public:                                                                 \
        static                                                              \
        constexpr bool value = sizeof(check<U>(0)) == sizeof(std::uint8_t); \
    }

DEFINE_HAS_SIGNATURE(has_ham_const, T::ham, void (T::*)() const);

然后

static_assert(has_ham_const<foo>::value, "unexpected");
static_assert(!has_ham_const<bar>::value, "unexpected");

Demo

答案 1 :(得分:3)

探测器(如is_detected):

DATETIME

样本成员验证者:

template <typename...>
using void_t = void;

template <typename T, template <typename> class D, typename = void>
struct detect : std::false_type {};

template <typename T, template <typename> class D>
struct detect<T, D, void_t<D<T>>> : std::true_type {};

测试:

template <typename T>
using const_ham = decltype(std::declval<const T&>().ham());

DEMO

答案 2 :(得分:3)

SFINAE一遍又一遍。这是另一个未指定返回类型的选项,但允许您指定参数。

(为了比较:@ Jarod42的方法检查确切的签名,返回类型+参数,其他void_t表达式sfinae到目前为止只检查是否可以调用ham()。)

另外,它适用于当前的MSVC 2015 Update 1版本(与通常的void_t内容不同)。

template<typename V, typename ... Args>
struct is_callable_impl
{
    template<typename C> static constexpr auto test(int) -> decltype(std::declval<C>().ham(std::declval<Args>() ...), bool{}) { return true; }
    template<typename> static constexpr auto test(...) { return false; }
    static constexpr bool value = test<V>(int{});
    using type = std::integral_constant<bool, value>;
};

template<typename ... Args>
using is_callable = typename is_callable_impl<Args...>::type;

将其用作

struct foo
{
    void ham() {}
    void ham() const {}
    int ham(int) const {}
};

int main()
{
     std::cout
      <<is_callable<foo>::value                //true
      <<is_callable<const foo>::value          //true
      <<is_callable<const foo, int>::value     //true
      <<is_callable<const foo, double>::value  //also true, double is converted to int
      <<is_callable<const foo, std::string>::value  //false, can't call foo::ham(std::string) const
      <<std::endl;
}

Demo on Coliru

对于&#34;最新的&#34;但是,我建议您查看boost.hana

答案 3 :(得分:2)

另一种选择是模拟void_t(在C ++ 17中正式出现),它使用expression SFINAE来确保您的函数在const实例上是可调用的,无论其返回类型如何。

#include <iostream>
#include <type_traits>

struct Foo
{
    void ham() const;
    void ham();
};

struct Bar {
    void ham() {}
};

template<typename...>
using void_t = void;

template<typename C, typename = void>
struct has_const_ham: std::false_type{};

template<typename C> // specialization, instantiated when there is ham() const
struct has_const_ham<C, void_t<decltype(std::declval<const C&>().ham())>> : 
    std::true_type{};

int main()
{
    std::cout << std::boolalpha;
    std::cout << has_const_ham<Foo>::value << std::endl;
    std::cout << has_const_ham<Bar>::value << std::endl;
}

编辑

如果要强制执行返回类型,请从std::is_same派生专门化,例如

template<typename C> // specialization, instantiated when there is ham() const
struct has_const_ham<C, void_t<decltype(std::declval<const C&>().ham())>> : 
    std::is_same<decltype(std::declval<const C&>().ham()), void> // return must be void
{}; 

Live on Coliru

答案 4 :(得分:1)

这是一个没有宏的解决方案,它也不关心返回类型:

template <typename T>
struct is_well_formed : std::true_type
{
};

template <typename T, typename = void>
struct has_const_ham : std::false_type
{
};

template <typename T>
struct has_const_ham<T,
                     typename std::enable_if<is_well_formed<decltype(
                         std::declval<const T&>().ham())>::value>::type>
    : std::true_type
{
};


static_assert(has_const_ham<foo>::value, "oops foo");
static_assert(!has_const_ham<bar>::value, "oops bar");