3

我的问题是参数只检索每个参数中的第一个字母,为此我不知道为什么..有人可以详细说明吗?

#include <Windows.h>
#include <string>

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hpInstance, LPSTR nCmdLine, int iCmdShow){

LPWSTR *szArglist;
    int nArgs = 0;
    szArglist = CommandLineToArgvW(GetCommandLineW(), &nArgs);
    std::string a;
    for(int i=0; i<nArgs; i++){
        a += (LPCSTR)szArglist[i];
    }

    MessageBox(NULL, (LPCSTR)a.c_str(), (LPCSTR)a.c_str(), MB_OK);

    LocalFree(szArglist);
return 0;
}

我认为问题在于CommandLineToArgvW(GetCommandLineW(), &nArgs);

4

2 回答 2

3

LPWSTR被定义为wchar_t *szArglist是一个wchar_t *s 的数组。宽字符是 2 个字节而不是 1 个字节,因此一个字母可能表示为:

0x0038 0x0000

但是,如果你拿这些字节说‘嘿,假装我是一个char *,这看起来像一个带有一个字母 (0x0038) 的 C 字符串,因为第二个字符 (0x0000) 为空,在 C 风格的字符串中代表结束的字符串。

您遇到的问题是您试图将宽字符 ( wchar_t) 放入非宽 ( char) 字符串中,这是一个更复杂的操作。

解决方案:要么在任何地方使用 wstring/wchar_t(对应于 LPWSTR/LPCWSTR),要么在任何地方使用 string/char(我相信对应于 LPSTR 和 LPCSTR)。请注意,您的“使用 unicode”项目设置应符合您的决定。尽量不要混合这些!

于 2013-07-26T17:21:14.567 回答
0

这不应该只是

int WINAPI 
WinMain(HINSTANCE hInstance, HINSTANCE hpInstance, LPSTR nCmdLine, int iCmdShow)
{
    MessageBoxA(NULL, nCmdLine, nCmdLine, MB_OK);
    return 0;
}

或者

int WINAPI 
WinMain(HINSTANCE hInstance, HINSTANCE hpInstance, LPSTR nCmdLine, int iCmdShow)
{
    MessageBoxW(NULL, GetCommandLineW(), GetCommandLineW(), MB_OK);
    return 0;
}

?

于 2013-07-26T17:13:13.603 回答