2

我正在编写代码,其中很大一部分需要返回 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;
}
4

2 回答 2

0

由于您用“C++”标记了您的问题,答案是响亮的:不,您根本不应该使用wcsdup。相反,为了传递wchar_t值数组,请使用std::vector<wchar_t>.

如果需要,您可以wchar_t*通过获取第一个元素的地址将它们转换为 a(因为向量保证存储在连续的内存中),例如

cout << "12345 in Hex is " << &hexConversion[0] << endl;
于 2015-08-28T12:56:19.557 回答
0
wchar_t *intToWChar(int toConvert, int base)
{
    wchar_t converted[12];
    /* Conversion happens... */
    return converted;
}

这将返回一个指向局部变量的指针。

wchar_t *hexString = intToWChar(toConvert, 16);

在这一行之后,hexString将指向无效内存并且使用它是未定义的(可能仍然有价值或者可能是垃圾!)。

你对 from 的返回做同样的事情intToHexWChar

解决方案:

  • 采用std::wstring
  • 采用std::vector<wchar_t>
  • 将数组传递给函数以供其使用
  • 使用智能指针
  • 使用动态内存分配(请不要!)

注意:您可能还需要更改wcoutcout

于 2015-08-28T13:06:02.903 回答