这是我的代码:
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 之间的异同,我找不到任何好的文档来帮助我自己解决这个问题。