3

我正在使用 casablanca 库来序列化 json 值。

我尝试使用typedef std::wstring string_tand this 将其转换为 std::string 以从 wstring 转换为 string。它编译得很好,但是程序在执行返回行时会崩溃。

std::string getString()
{
    web::json::value cvalue;
    /* ----- code ----- */
    typedef std::wstring string_t;
    string_t outputString = cvalue.serialize();

    typedef std::codecvt_utf8<wchar_t> convert_type;
    std::wstring_convert<convert_type, wchar_t> converter;
    std::string converted_str = converter.to_bytes(outputString);

    return converted_str;
}

我不明白为什么这会崩溃。下面是调用该函数的行。

std::string s = getString();

free(_Ptr)该程序在名为 xdebug 的文件的行中触发了一个断点。我真的不明白这里在说什么。希望这有助于为您澄清事情。

template<class _Ty>
    void __CLRCALL_OR_CDECL _DebugHeapDelete(_Ty *_Ptr)
    {   // delete from the debug CRT heap even if operator delete exists
    if (_Ptr != 0)
        {   // worth deleting
        _Ptr->~_Ty();
        // delete as _NORMAL_BLOCK, not _CRT_BLOCK, since we might have
        // facets allocated by normal new.
        free(_Ptr);
        }
    }

谢谢!

4

1 回答 1

14

在 C++ REST SDK 中有一个函数可以转换utility::string_t为 utf8 std::stringutility::conversions::to_utf8string

参考文件

于 2016-02-02T08:12:07.667 回答