cout a string gets the address instead of value(cout 字符串获取地址而不是值)
问题描述
有一个宏定义如下:
#ifdef UNICODE
typedef wchar_t TCHAR;
#define TEXT(quote) L##quote
#else
typedef char TCHAR;
#define TEXT(quote) quote
#endif
当我尝试使用 std::cout 打印消息时,如下所示:
When I try to print a message using std::cout as below:
TCHAR* test = TEXT("test");
cout << test;
我得到的地址是 00D82110 而不是值test".
What I get the address such as 00D82110 instead of the value "test".
任何人都可以提出任何建议,我如何在此处打印值?非常感谢!
Can anybody give any suggestion how can I print the value here? Thanks a lot!
推荐答案
对于宽字符,您需要使用 wcout
而不是 cout
.这样做:
You need to use wcout
instead of cout
for wide characters. Do this:
#ifdef UNICODE
typedef wchar_t TCHAR;
#define TEXT(quote) L##quote
#define COUT wcout
#else
typedef char TCHAR;
#define TEXT(quote) quote
#define COUT cout
#endif
然后:
TCHAR* test = TEXT("test");
COUT << test;
这篇关于cout 字符串获取地址而不是值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:cout 字符串获取地址而不是值
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01