可以在C 11中模拟std :: is_invocable吗?

前端之家收集整理的这篇文章主要介绍了可以在C 11中模拟std :: is_invocable吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用std :: is_invocable,但是我们使用的是c 11标准,而is_invocable只能从c 17开始使用.

有没有办法用c 11模拟功能

谢谢

解决方法

你可以尝试这个实现:)取自boost C库.我用VS2017用标准C 14测试了它.
template <typename F,typename... Args>
struct is_invocable :
    std::is_constructible<
        std::function<void(Args ...)>,std::reference_wrapper<typename std::remove_reference<F>::type>
    >
{
};

template <typename R,typename F,typename... Args>
struct is_invocable_r :
    std::is_constructible<
        std::function<R(Args ...)>,std::reference_wrapper<typename std::remove_reference<F>::type>
    >
{
};
原文链接:/c/110638.html

猜你在找的C&C++相关文章