wstring

    2熱度

    2回答

    我正在使用一種API,它在內存中提供了感興趣的字符串的內存地址和長度。我想將這些字符串讀入像wstring這樣的更友好的對象。 對於較小的字符串,靜態大小的緩衝區工作正常使用下面的代碼: // This code works (but may have other issues) // _stringLengthOffset and _bufferOffset are provided earl

    1熱度

    2回答

    我想完成主題任務,但我的代碼不分裂。這裏的主要功能是: #define SQL_TEXT Latin_Text #include <iostream> #define SQL_TEXT Latin_Text #include <sqltypes_td.h> #include "Split.h" #include <string> #include <stdio.h> #include

    2熱度

    1回答

    去除口音我寫了這個代碼,刪除字符口音的字符串,使大寫: #include <iostream> #include <string> using namespace std; std::wstring input; int main() { input.reserve(255); cout << "Enter string to be converted:" <<end

    3熱度

    1回答

    構建期間出現錯誤Ubuntu。 和錯誤是如下: ISO C++ forbids declaration of `wstring' with no type 爲了解決這個問題,我有我自己定義wstring。 那麼誰知道如何定義wstring?

    12熱度

    3回答

    我目前工作的一個大型項目,其中「邏輯」,在標準C實現++與所有字符串與std::wstring被處理和UI部分使用Qt來實現,因此一定QString(獎金的問題:這是真的嗎?)。 什麼是這兩個世界連接的最佳方式? 我知道我可以使用類似 std::wstring wideString; QString qtString = QString::fromStdWString(wideString);

    0熱度

    2回答

    我有以下代碼,我試圖將整數更改爲wstring,然後我可以將它傳遞給文本文件。但問題是,當它達到_itow_s(vec,img_stamp,10);行它將數字更改爲負數。 任何機構知道什麼是問題? wchar_t img_stamp[64]; while(c<_timeStamp.size()){ vec=_timeStamp.at(c); _itow_s(ve

    2熱度

    1回答

    我想輸出一個wstring到輸出窗口(我希望這是它的英文名稱)。 但它沒有做到這一點。 有人看到我出錯了嗎?

    0熱度

    1回答

    我想在C++(VS 2010)中將LPCWSTR轉換爲wstring。 我想在OutputDebugStringW()中使用它。 謝謝。

    1熱度

    2回答

    如何確定std::wstring中的長度(字符數)? 使用myStr.length()給出字節大小(我認爲),但它不是字符數。我是否需要創建自己的函數來查找字符數或是否有本地C++方式或本機WinAPI方式?

    1熱度

    2回答

    我正在解析一個文件,其中包含不同編碼中的各種字符串。這些字符串的存儲方式是這樣的: 0xFF 0xFF - block header 2 bytes 0xXX 0xXX - length in bytes 2 bytes 0xXX - encoding (can be 0, 1, 2, 3) 1 byte ... - actual string num bytes