LoginId:5dedc10843bb9377ec17aa9f232e478d EpicAccountId:665b1371e2f84c338c7e472e68faf574 Unhandled Exception: EXCEPTION_ACCESS_VIOLATION reading address 0x0000000000000008 UnrealEditor_SearchWeather!UShowInformationWidget::AddNewInfo() [D:\Project\UE_Project\SearchWeather\Source\SearchWeather\Private\ShowInformationWidget.cpp:105] UnrealEditor_SearchWeather!UShowInformationWidget::GetCreateSignal() [D:\Project\UE_Project\SearchWeather\Source\SearchWeather\Private\ShowInformationWidget.cpp:91] UnrealEditor_SearchWeather!TBaseUObjectMethodDelegateInstance<0,UShowInformationWidget,void __cdecl(bool,FString),FDefaultDelegateUserPolicy>::Execute() [D:\Epic Games\UE_5.2\Engine\Source\Runtime\Core\Public\Delegates\DelegateInstancesImpl.h:534] UnrealEditor_SearchWeather!UAddInforWidget::DetermineCreate() [D:\Project\UE_Project\SearchWeather\Source\SearchWeather\Private\AddInforWidget.cpp:30] 帮我解释一下这个报错
时间: 2023-10-03 20:02:36 浏览: 1399
超市管理系统(数据库设计、E-R图).doc
这是一条 Unreal Engine 引擎的崩溃日志,其中的 EXCEPTION_ACCESS_VIOLATION reading address 0x0000000000000008 表示在程序执行时读取了一个无效的内存地址,导致崩溃。具体来说,该崩溃发生在 UnrealEditor_SearchWeather!UShowInformationWidget::AddNewInfo() 函数的第 105 行,该函数可能试图访问一个无效的指针或对象。可以通过检查代码,查找可能导致该崩溃的原因,例如:未初始化的指针、空指针、越界访问等等。另外,该崩溃还涉及到 UnrealEditor_SearchWeather!UShowInformationWidget::GetCreateSignal() 和 UnrealEditor_SearchWeather!UAddInforWidget::DetermineCreate() 函数。
阅读全文