Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想测试一堆“应用程序崩溃转储生成器”,比如好老的 Watson 博士。
在 C/C++ 中因未处理的异常引发应用程序崩溃的最简单方法是什么?
虽然从技术上讲,取消引用NULL指针只是一种未定义的行为,而不是保证崩溃,但实际上它几乎绝对肯定会崩溃:
NULL
(*((int*)0))=0;