SEH exception with code 0xc0000005 thrown in the test body

在用Visual Studio时遇到这个报错。原因:访问了非法的内存地址。

这个问题不应该被忽略,通常是代码有bug。

解决办法:

VS2013: 菜单->Debug->Exceptions

VS2015: 菜单->Debug->Windows->Exception Settings

确保所有项都打勾,然后调试运行,出现第一个报错的地方就是非法访问内存的bug,改掉它。

参考:https://stackoverflow.com/questions/13157671/seh-exception-with-code-0xc0000005-thrown-in-the-test-body

The way I just found the problem was that in Visual Studio I went to Debug->Exceptions, and checked everything in the first column. Then run/debug your unit tests, and it will throw an exception on the line that the problem is at. That's where you need to debug/fix it.

For visual studio 2015: Debug->Windows->Exception Settings

posted @ 2019-03-22 16:45  ChrisZZ  阅读(1773)  评论(0编辑  收藏  举报