gpt4 book ai didi

c++ - std::remove_pointer 无法删除 VS2012 上的 const volatile 函数指针

转载 作者:太空宇宙 更新时间:2023-11-04 14:11:58 26 4
gpt4 key购买 nike

std::remove_pointer 无法在 VS2012 上删除 const volatile 函数指针这是 vs2012 中的 buf 吗?

#include "iostream"
#include <typeinfo>
using namespace std;

int main()
{
typedef void (* const cfunp_t) ();

cout<<typeid(cfunp_t).name()<<endl;
cout<<typeid(std::remove_pointer<cfunp_t>::type).name()<<endl;

return 0;
}

vs2012 输出构建:

void (__cdecl*)(void)
void (__cdecl*)(void) // can not remove the const function pointer

mingw gcc 4.7.2 输出构建

PFvvE
FvvE // can remove the const function pointer

最佳答案

谢谢大家

我更改我的测试代码:

#include "iostream"
#include <typeinfo>
using namespace std;

typedef void fun_t();
typedef fun_t* funp_t;
typedef const funp_t cfunp_t;

template<typename T>
void print_type()
{
cout<<"unknow"<<endl;
}

template<>
void print_type<fun_t>()
{
cout<<"is a function"<<endl;
}

template<>
void print_type<funp_t>()
{
cout<<"is a function pointer"<<endl;
}

template<>
void print_type<cfunp_t>()
{
cout<<"is a const function pointer"<<endl;
}

int main()
{
print_type<cfunp_t>();
print_type<std::remove_pointer<cfunp_t>::type>();

return 0;
}

输出:

在 vs2012 中

is a const function pointer

is a const function pointer

在海湾合作委员会中

is a const function pointer

is a function

关于c++ - std::remove_pointer 无法删除 VS2012 上的 const volatile 函数指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13778412/

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