gpt4 book ai didi

c++ - 如何用 cout 打印函数指针?

转载 作者:行者123 更新时间:2023-12-02 10:38:46 25 4
gpt4 key购买 nike

我想使用 cout 打印出一个函数指针,发现它不起作用。
但是在我将函数指针转换为 (void *) 后它起作用了,printf 和 %p 也是如此,例如

#include <iostream>
using namespace std;

int foo() {return 0;}

int main()
{
int (*pf)();
pf = foo;
cout << "cout << pf is " << pf << endl;
cout << "cout << (void *)pf is " << (void *)pf << endl;
printf("printf(\"%%p\", pf) is %p\n", pf);
return 0;
}

我用 g++ 编译它并得到如下结果:

cout << pf is 1
cout << (void *)pf is 0x100000b0c
printf("%p", pf) is 0x100000b0c



那么 cout 对 int (*)() 类型做了什么?有人告诉我函数指针被视为 bool 值,是真的吗?
cout 对 type (void *) 做了什么?

提前致谢。

编辑:无论如何,我们可以通过将函数指针转换为 (void *) 并使用 cout 打印出来来观察函数指针的内容。
但它不适用于成员函数指针,编译器提示非法转换。我知道成员函数指针不是简单的指针,而是一个相当复杂的结构,但是我们如何观察成员函数指针的内容呢?

最佳答案

实际上有一个 << 运算符的重载,看起来像:

ostream & operator <<( ostream &, const void * );

这符合您的期望 - 以十六进制输出。函数指针不可能有这样的标准库重载,因为它们有无数种类型。所以指针被转换为另一种类型,在这种情况下它似乎是一个 bool 值——我不能随便记住这个规则。

编辑: C++ 标准规定:

4.12 Boolean conversions

1 An rvalue of arithmetic, enumeration, pointer, or pointer to member type can be converted to an rvalue of type bool.



这是为函数指针指定的唯一转换。

关于c++ - 如何用 cout 打印函数指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56340363/

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