2

我应该怎么做才能将 HWND 数据类型转换为 LPCSTR。OutputDebugStringA我需要使用函数将其打印到调试窗口

4

1 回答 1

2

您可以使用std::stringstream

std::stringstream ss;
ss << hwnd;
OutputDebugStringA(ss.str().c_str());
于 2013-10-26T21:46:14.203 回答