如何解释 GetLastError() 返回的错误代码
调用 Windows API 后,开发人员可能会遇到错误情况,需要了解底层的情况失败的原因至关重要。本机 Win32 API 函数 GetLastError() 提供错误代码,但此代码表示为整数,因此很难破译其含义。
将错误代码转换为文本消息
为了获得人类可读的错误消息,开发人员需要一种机制将这些数字错误代码转换为文本描述。下面的代码片段展示了此转换过程:
#include <windows.h> #include <string> std::string GetLastErrorAsString() { // Retrieve the error message ID, if available. DWORD errorMessageID = ::GetLastError(); if (errorMessageID == 0) { return std::string(); // No error message has been recorded. } LPSTR messageBuffer = nullptr; // Instruct Win32 to generate the message string for the provided error ID. 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); // Transfer the error message into a std::string. std::string message(messageBuffer, size); // Deallocate Win32's message buffer. LocalFree(messageBuffer); return message; }
用法:
要使用此函数,只需在任何可能返回错误代码。它将返回一个包含文本错误消息的 std::string,然后可以将其显示给用户或记录以进行进一步的诊断。
以上是如何将 Windows GetLastError() 错误代码转换为人类可读的消息?的详细内容。更多信息请关注PHP中文网其他相关文章!