首页 > 后端开发 > C++ > 正文

如何将 Windows GetLastError() 错误代码转换为人类可读的消息?

Susan Sarandon
发布: 2024-11-19 20:38:03
原创
901 人浏览过

How Can I Convert Windows GetLastError() Error Codes into Human-Readable Messages?

如何解释 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板