gpt4 book ai didi

C++ - 如何将 String 转换为 TCHAR*?

转载 作者:行者123 更新时间:2023-11-28 07:37:13 25 4
gpt4 key购买 nike

这是我的代码:

string str = "Hello!";
TCHAR* tch = new TCHAR[str.length() + 1];
mbstowcs_s(NULL, tch, _tcslen(tch), str.c_str(), str.length());
// Use tch for other stuff...
delete [] tch; // Gives debug heap corruption assertion

出于某种原因,我收到了关于此代码的堆损坏断言。我正在绞尽脑汁想弄清楚可能出了什么问题。我找不到任何关于字符串和 tchars 之间相似点和不同点的好文档来帮助我自己解决这个问题。

最佳答案

_tcslen(tch) 给出了错误的结果,因为此时 tch 没有被初始化。我假设您应该在那里传递 str.length() + 1(缓冲区的大小)。

关于C++ - 如何将 String 转换为 TCHAR*?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16557102/

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