首頁 > 後端開發 > C++ > 主體

如何從 Windows API 呼叫中檢索人類可讀的錯誤訊息?

Susan Sarandon
發布: 2024-11-25 01:30:11
原創
115 人瀏覽過

How Can I Retrieve Human-Readable Error Messages from Windows API Calls?

從Windows API 呼叫中擷取人類可讀的錯誤訊息

與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)&amp;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;
登入後複製

}

此函數的最後一個與WindowsString() 嘗試擷取與WindowsString() 嘗試擷取一個錯誤代碼關聯的錯誤訊息。它首先檢索錯誤訊息 ID,如果有效,則使用 FormatMessageA 函數將其轉換為人類可讀的字串。錯誤訊息儲存在 std::string 物件中並由函數傳回。如果沒有找到錯誤訊息,則傳回空字串。

以上是如何從 Windows API 呼叫中檢索人類可讀的錯誤訊息?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板