如何编写指向 std::cerr 的指针?

发布于 2024-09-09 04:17:24 字数 169 浏览 9 评论 0原文

给定:

MY_CLASS* ptr = MY_CLASS::GetSomeInstance();

ptr 输出到 std::cerr 的正确方法是什么,以便我可以记录其值?注意我不想写类,只想写地址。

Given:

MY_CLASS* ptr = MY_CLASS::GetSomeInstance();

What is the correct way to output ptr to std::cerr, so I can log its value? Note I don't want to write the class, just the address.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

墨落成白 2024-09-16 04:17:24

operator<< 被重载以获取 const void*,因此您可以简单地将指针插入到流中:

std::cerr << ptr;

例外情况是,如果指针是 const char*,它将被解释为指向 C 字符串的指针。要打印指针,您需要将其显式转换为 const void*:

std::cerr << static_cast<const void*>(ptr); 

operator<< is overloaded to take a const void*, so you can simply insert the pointer into the stream:

std::cerr << ptr;

The exception is that if the pointer is a const char*, it will be interpreted as a pointer to a C string. To print the pointer, you need to cast it explicitly to a const void*:

std::cerr << static_cast<const void*>(ptr); 
呆橘 2024-09-16 04:17:24

您可以利用 printf 的 boost 格式格式化:

std::cerr << format("%p", ptr) << endl;

%p 格式化指针 - 应该可以在 x86 和 x64 之间移植。

You can leverage boost format for printf like formatting:

std::cerr << format("%p", ptr) << endl;

%p formats pointer - should be portable between x86 and x64.

念﹏祤嫣 2024-09-16 04:17:24

在使用 operator<< 有效时,您还可以使用

#include <cstdio>
...
MY_CLASS* ptr = MY_CLASS::GetSomeInstance();
fprintf(std::stderr, "Pointer address: %p", ptr);

While using operator<< works, you could also use <cstdio>:

#include <cstdio>
...
MY_CLASS* ptr = MY_CLASS::GetSomeInstance();
fprintf(std::stderr, "Pointer address: %p", ptr);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文