c – std :: is_function不能将模板参数识别为函数

前端之家收集整理的这篇文章主要介绍了c – std :: is_function不能将模板参数识别为函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我将一个函数指针传递给一个函数模板:
int f(int a) { return a+1; }

template<typename F>
void use(F f) {
    static_assert(std::is_function<F>::value,"Function required"); 
}

int main() {
    use(&f); // Plain f does not work either.
}

但是,模板参数F不被is_function识别为一个函数,静态断言失败.编译器错误消息说F是int(*)(int),它是一个指向函数的指针.为什么这样做呢?在这种情况下,如何识别函数或指针?

解决方法

F是一个指向函数的指针(不管你是通过f还是f).所以删除指针:
std::is_function<typename std::remove_pointer<F>::type>::value

(讽刺的是,std :: is_function< std :: function< FT>> == false ;-))

原文链接:https://www.f2er.com/c/110388.html

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