What is the easiest way to make a C++ program crash?(使 C++ 程序崩溃的最简单方法是什么?)
问题描述
我正在尝试制作一个 Python 程序来与不同的崩溃进程交互(这不在我的掌控之中).不幸的是,我正在与之交互的程序甚至不会可靠地崩溃!所以我想制作一个故意崩溃的快速 C++ 程序,但我实际上并不知道最好和最短的方法,有谁知道在我的之间放什么:
I'm trying to make a Python program that interfaces with a different crashy process (that's out of my hands). Unfortunately the program I'm interfacing with doesn't even crash reliably! So I want to make a quick C++ program that crashes on purpose but I don't actually know the best and shortest way to do that, does anyone know what to put between my:
int main() {
crashyCodeGoesHere();
}
让我的 C++ 程序可靠地崩溃
to make my C++ program crash reliably
推荐答案
试试:
raise(SIGSEGV); // simulates a standard crash when access invalid memory
// ie anything that can go wrong with pointers.
发现于:
#include <signal.h>
这篇关于使 C++ 程序崩溃的最简单方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使 C++ 程序崩溃的最简单方法是什么?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01