Windows API와 상호작용할 때 반환된 오류 코드와 관련된 오류 메시지를 검색해야 하는 경우가 많습니다. GetLastError(). 이 오류 코드는 사람이 읽을 수 있는 텍스트 메시지가 아닌 정수 값입니다.
오류 코드를 디버깅 및 문제 해결에 더 유용할 수 있는 텍스트 형식으로 변환하려면 다음 코드 조각을 사용할 수 있습니다.
//마지막 Win32 오류를 문자열 형식으로 반환합니다. 오류가 없으면 빈 문자열을 반환합니다.<br>std::string GetLastErrorAsString()<br>{</p> <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 중국어 웹사이트의 기타 관련 기사를 참조하세요!