2

你好朋友,我怎样才能将类型“int”转换为类型“LPCSTR”?我想将变量“int cxClient”赋予“MessageBox”函数的第二个参数“LPCSTR lpText”。以下是示例代码:

int cxClient;    
cxClient = LOWORD (lParam);    
MessageBox(hwnd, cxClient, "Testing", MB_OK);

但它不起作用。以下函数是“MessageBox”函数的方法签名:

MessageBox(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType);
4

2 回答 2

7

使用正确的 sprintf 变体将 int 转换为字符串

TCHAR buf[100];
_stprintf(buf, _T("%d"), cxClient);
MessageBox(hwnd, buf, "Testing", MB_OK);

你需要<tchar.h>

我认为这_stprintf是这里的快速答案 - 但如果你想像大卫建议的那样使用纯 C++,那么

#ifdef _UNICODE
wostringstream oss;
#else
ostringstream oss;
#endif

oss<<cxClient;

MessageBox(0, oss.str().c_str(), "Testing", MB_OK);

你需要

#include <sstream>
using namespace std;
于 2013-07-14T12:11:04.300 回答
2
using std::to_string

std::string message = std::to_string(cxClient)

http://en.cppreference.com/w/cpp/string/basic_string/to_string

于 2013-07-14T12:13:35.687 回答