gpt4 book ai didi

c++ - std::is_function 不将模板参数识别为函数

转载 作者:可可西里 更新时间:2023-11-01 15:07:54 26 4
gpt4 key购买 nike

我将函数指针传递给函数模板:

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.
}

但是 is_function 无法将模板参数 F 识别为函数,因此静态断言失败。编译器错误消息指出 Fint(*)(int),它是指向函数的指针。为什么会这样?在这种情况下,我如何识别函数或指向函数的指针?

最佳答案

F是一个指向函数的指针(无论您传递的是 f 还是 &f)。所以删除指针:

std::is_function<typename std::remove_pointer<F>::type>::value

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

关于c++ - std::is_function 不将模板参数识别为函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16395168/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com