与 Windows API 交互时,通常需要检索与返回的错误代码关联的错误消息GetLastError()。此错误代码是一个整数值,而不是人类可读的文本消息。
要将错误代码转换为文本形式(这对于调试和故障排除更有用),可以使用以下代码片段:
//以字符串格式返回最后一个 Win32 错误。如果没有错误,则返回空字符串。<br>std::string GetLastErrorAsString()<br>{<pre class="brush:php;toolbar:false">//Get the error message ID, if any. DWORD errorMessageID = ::GetLastError(); if(errorMessageID == 0) { return std::string(); //No error message has been recorded } LPSTR messageBuffer = nullptr; //Ask Win32 to give us the string version of that message ID. //The parameters we pass in, tell Win32 to create the buffer that holds the message for us (because we don't yet know how long the message string will be). size_t size = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errorMessageID, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&messageBuffer, 0, NULL); //Copy the error message into a std::string. std::string message(messageBuffer, size); //Free the Win32's string's buffer. LocalFree(messageBuffer); return message;
}
此函数GetLastErrorAsString() 尝试检索与 Windows API 记录的最后一个错误代码关联的错误消息。它首先检索错误消息 ID,如果有效,则使用 FormatMessageA 函数将其转换为人类可读的字符串。错误消息存储在 std::string 对象中并由函数返回。如果没有找到错误信息,则返回空字符串。
以上是如何从 Windows API 调用中检索人类可读的错误消息?的详细内容。更多信息请关注PHP中文网其他相关文章!