什么是C ++中的SIGSEGV运行时错误?

编程入门 行业动态 更新时间:2024-10-19 11:49:31
本文介绍了什么是C ++中的SIGSEGV运行时错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我需要知道分段错误的根本原因,也可以告诉我如何处理它。

I need to know the root cause of the segmentation fault, and also can anyone tell me how to handle it.

推荐答案

维基百科提供了答案以及其他一些来源。

Wikipedia has the answer, along with a number of other sources.

segfault基本上意味着你使用指针做了一些坏事。这可能是一个segfault:

A segfault basically means you did something bad with pointers. This is probably a segfault:

char *c = NULL; ... *c; // dereferencing a NULL pointer

或者:

char *c = "Hello"; ... c[10] = 'z'; // out of bounds, or in this case, writing into read-only memory

char *c = new char[10]; ... delete [] c; ... c[2] = 'z'; // accessing freed memory

相同的基本原则在每种情况下 -

Same basic principle in each case - you're doing something with memory that isn't yours.

更多推荐

什么是C ++中的SIGSEGV运行时错误?

本文发布于:2023-10-09 05:57:34,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1474897.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:错误   SIGSEGV

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!