本文介绍了如何避免分段错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在完成作业时,我总是遇到分段错误。实际上我使用调试器来解决它们但我想知道应该如何避免它们?



任何帮助都将受到赞赏。



我尝试过的事情:



我经常尝试但总是浪费一整天代码。 ..: - )

I always get segmentation faults while doing my assignments. Actually I do use debugger to solve them but I want to know how should we avoid them?

Any help will be appreciated.

What I have tried:

I usually try but always waste whole day for that single line of code... :-)

推荐答案



引用:

分段错误



这通常发生在你的程序试图访问它不拥有的地方时。

聪明地使用调试器将帮助您找到问题所在。

如果没有看到您的代码,我们无法帮助您。


This happen typically when your program try to access a place it don't own.
A clever use of debugger will help you to find where is the problem.
We can't help you mire without seeing your code.


这篇关于如何避免分段错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-04 02:18