修复 C++ 中的分段错误

Fixing Segmentation faults in C++(修复 C++ 中的分段错误)
本文介绍了修复 C++ 中的分段错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在为 Windows 和 Unix 编写一个跨平台的 C++ 程序.在 Window 端,代码将编译和执行没有问题.在 Unix 端,它会编译,但是当我尝试运行它时,出现分段错误.我最初的预感是指针有问题.

I am writing a cross-platform C++ program for Windows and Unix. On the Window side, the code will compile and execute no problem. On the Unix side, it will compile however when I try to run it, I get a segmentation fault. My initial hunch is that there is a problem with pointers.

找到和修复分段错误的好方法是什么?

推荐答案

  1. 使用 -g 编译您的应用程序,然后您将在二进制文件中获得调试符号.

  1. Compile your application with -g, then you'll have debug symbols in the binary file.

使用 gdb 打开 gdb 控制台.

Use gdb to open the gdb console.

使用 file 并将您的应用程序的二进制文件传递给控制台.

Use file and pass it your application's binary file in the console.

使用 run 并传入您的应用程序启动所需的任何参数.

Use run and pass in any arguments your application needs to start.

做一些导致分段错误的事情.

gdb 控制台中键入 bt 以获取分段错误的堆栈跟踪.

Type bt in the gdb console to get a stack trace of the Segmentation Fault.

这篇关于修复 C++ 中的分段错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do compilers treat variable length arrays(编译器如何处理变长数组)
Deduce template argument from std::function call signature(从 std::function 调用签名推导出模板参数)
check if member exists using enable_if(使用 enable_if 检查成员是否存在)
Standard Library Containers with additional optional template parameters?(具有附加可选模板参数的标准库容器?)
Uses of a C++ Arithmetic Promotion Header(C++ 算术提升标头的使用)
Parameter pack must be at the end of the parameter list... When and why?(参数包必须位于参数列表的末尾...何时以及为什么?)