我正在编写代码,其中很大一部分需要返回 wchar 数组。返回 wstrings 并不是一个真正的选项(尽管我可以使用它们),我知道我可以将指针作为参数传递并填充它,但我特别希望返回指向这个宽字符数组的指针。在最初的几次迭代中,我发现我可以返回数组,但是当它们被处理和打印时,内存将被覆盖,我会留下乱码。为了解决这个问题,我开始使用 wcsdup,它修复了所有问题,但我很难准确掌握正在发生的事情,因此,什么时候应该调用它以便它工作并且我没有泄漏任何内存。事实上,我几乎每次返回一个字符串和每次返回一个字符串时都使用 wcsdup,我知道这会泄漏内存。这就是我正在做的事情。
wchar_t *intToWChar(int toConvert, int base)
{
wchar_t converted[12];
/* Conversion happens... */
return converted;
}
wchar_t *intToHexWChar(int toConvert)
{
/* Largest int is 8 hex digits, plus "0x", plus /0 is 11 characters. */
wchar_t converted[11];
/* Prefix with "0x" for hex string. */
converted[0] = L'0';
converted[1] = L'x';
/* Populate the rest of converted with the number in hex. */
wchar_t *hexString = intToWChar(toConvert, 16);
wcscpy((converted + 2), hexString);
return converted;
}
int main()
{
wchar_t *hexConversion = intToHexWChar(12345);
/* Other code. */
/* Without wcsdup calls, this spits out gibberish. */
wcout << "12345 in Hex is " << hexConversion << endl;
}