C++ HWND 转 string

 C++ 中句柄HWND 转 string 字符串的方法。记录一下

HWND hwnd=getHwnd();
char buf[10];
sprintf(buf,"%d",(int)hwnd);
MessageBox(NULL,buf,TEXT("msg"),MB_OK);

想转string 直接赋值就行,

string hwndstr;

hwndstr=buf;

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注