定义一个函数和指向该函数的指针,然后判断函数指针解引用之后是否为函数void test1() {}int main(){ void(*t1)() = test1; std::cout << std::is_function<decltype(*t1)>::value << std::endl; std::cout << std::is_function<decltype(test1)>::value << std::endl; std::cout << (typeid(decltype(test1)).hash_code() == typeid(decltype(*t1)).hash_code()) << std::endl;
return 0;
}最后输出为:011直接比较*t1和test1的类型,结果表明类型一致,但第一个输出为什么为0已知道使用函数名调用函数时会被转化为函数函数指针想不明白这里为什么不对是模板匹配参数的规则造成的吗?is_function的部分实现:template<typename> struct is_function
: public false_type { }; template<typename _Res, typename... _ArgTypes> struct is_function<_Res(_ArgTypes...)>
: public true_type { };
2 回答
波斯汪
TA贡献1811条经验 获得超4个赞
decltype(*t1)的结果不是函数,而是函数引用,这是因为*t1返回一个lvalue,对于lvalue,decltype返回引用类型。
也就是说,不是
void()
而是
void (&) ()
由于是引用,is_function自然不能生效。使用remove_reference去除这个引用即可。
#include <iostream>#include <type_traits>#include <typeinfo>void test1() {}typedef void TEST();int main(){ TEST* t1 = test1; std::cout << std::is_reference<decltype(*t1)>::value << std::endl; //1 std::cout << std::is_function<std::remove_reference<decltype(*t1)>::type>::value << std::endl; // 1 return 0; }
慕的地10843
TA贡献1785条经验 获得超8个赞
decltype(*t1)的结果不是函数,而是函数引用,这是因为*t1返回一个lvalue,对于lvalue,decltype返回引用类型。
也就是说,不是
void()
而是
void (&) ()
由于是引用,is_function自然不能生效。使用remove_reference去除这个引用即可。
#include <iostream>#include <type_traits>#include <typeinfo>void test1() {}typedef void TEST();int main(){ TEST* t1 = test1; std::cout << std::is_reference<decltype(*t1)>::value << std::endl; //1 std::cout << std::is_function<std::remove_reference<decltype(*t1)>::type>::value << std::endl; // 1 return 0; }
- 2 回答
- 0 关注
- 1017 浏览
添加回答
举报
0/150
提交
取消