quot;coutquot; and quot;char addressquot;(“计算和“字符地址)
问题描述
char p;
cout << &p;
这不会打印字符 p 的地址.它打印一些字符.为什么?
This does not print the address of character p. It prints some characters. Why?
char p;
char *q;
q = &p;
cout << q;
即使这样也没有.为什么?
Even this does not. Why?
推荐答案
我相信 <<
运算符将其识别为字符串.将其转换为 void*
应该 工作:
I believe the <<
operator recognizes it as a string. Casting it to a void*
should work:
cout << (void*)&p;
std::basic_ostream
有一个专门的运算符,它接受一个 std::basic_streambuf
(基本上 is 一个字符串(在这种情况下)):
std::basic_ostream
has a specialized operator that takes a std::basic_streambuf
(which basically is a string (in this case)):
_Myt& operator<<(_Mysb *_Strbuf)
与接受任何指针的运算符相反(当然 char*
除外):
as opposed to the operator that takes any pointer (except char*
of course):
_Myt& operator<<(const void *_Val)
这篇关于“计算"和“字符地址"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“计算"和“字符地址"
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07