c++ cout 打印 char * 或者说 char [] 会将整个字符串打印出来
结论:
- 如果是 char 则直接返回字符内容
- 如果是 char * 或者 char [] 则将字符串中的内容都打印出来
直接看例子:
#include <iostream>
int main(){
char file_path[1024]="Do not go gentle into that good night";
// 会将字符数组当作字符串来输出
// Notice: 不是输出数组的首地址
// file_path 是一个 char 的地址 即 char* , 所以打印整个 字符串
std::cout << file_path << std::endl;
// file_path 是一个 char , 所以打印整个char的内容
std::cout << file_path[5] << std::endl;
// file_path[0] 是一个 char, 但是又用&取了其地址, 所以 &file_path[0] 是个地址,则打印整个 字符串
std::cout << &file_path[0] << std::endl;
// 要想打印地址,则需要用(void *)强制转换一下,这样
std::cout << (void *)(file_path+5) << std::endl;
// 将 (void *) 再转化为 (char *), 则依旧打印整个字符串
std::cout << (char *)(void *)(file_path+5) << std::endl;
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
来检验一下结果:
Do not go gentle into that good night
t
Do not go gentle into that good night
0x61fa25
t go gentle into that good night
- 1
- 2
- 3
- 4
- 5
有参考自
https://blog.csdn.net/Tian_fourpieces/article/details/79961852
https://bbs.csdn.net/topics/310127209
看看当年还是09年,咱还在读小学,爷青结!!!