gpt4 book ai didi

c++ - 打印函数地址时 Visual Studio 有问题吗?

转载 作者:太空狗 更新时间:2023-10-29 23:25:27 25 4
gpt4 key购买 nike

采用以下测试用例:

#include <iostream>

void foo()
{}

int main()
{
std::cout << &foo << std::endl;
}

GCC 4.1.2、GCC 4.8 和 GCC 4.9(C++03 和 C++11)所有 give the following output构建然后编译时:

$ g++ main.cpp -o test && ./test
main.cpp: In function 'int main()':
main.cpp:8:23: warning: the address of 'void foo()' will always evaluate as 'true' [-Waddress]
std::cout << &foo << std::endl;
^
1

这应该是因为函数指针唯一可行的流插入是转换为 bool(并且需要转换为 void* 才能实际获得地址到流中)。

但是,Microsoft Visual Studio 2012 和 2013 输出的是指针地址。

哪一组工具链是一致的?是否在任何地方记录了不符合项?

最佳答案

如果禁用语言扩展(/Za 开关),MSVC 可以正常运行并执行从函数指针到 bool 的转换。如果这样做,您的代码会产生以下警告(在 VS2013 上位于 /W4)

1>main.cpp(8): warning C4305: 'argument' : truncation from 'void (*)(void)' to 'std::_Bool'
1>main.cpp(8): warning C4800: 'void (*)(void)' : forcing value to bool 'true' or 'false' (performance warning)

输出为1


此行为是 documented类型转换部分

Both the C++ compiler and C compiler support these kinds of non-ANSI casts:
...
Non-ANSI casts of a function pointer to a data pointer

果然,以下行仅在禁用 /Za 的情况下编译

void *p = &foo;

禁用语言扩展会产生错误消息

1>main.cpp(8): error C2440: 'initializing' : cannot convert from 'void (*)(void)' to 'void *'
1> There is no context in which this conversion is possible

关于c++ - 打印函数地址时 Visual Studio 有问题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25540033/

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