What can cause segmentation faults in C++?

I noticed there's not question with a list of common causes of segmentation faults in C++, so I thought I'd add it.

Naturally it's community Wiki, since there's no one correct answer.

I think this might be useful for newer programmers learning C++, feel free to close it if you disagree.


Segmentation fault is caused by bad accesses to memory, only if your OS has a MMU. Otherwise, you won't get it but only strange behavior.

The virtual memory (the entire memory accessible to you = 2 ^ sizeof(pointer type) ) is mapped to physical memory in units named pages or segments (paging superseded segmentation but they are still used).

Each page has some protection rights, if you try to read from a page with no-read access you'll get a segfault. If you try to write to a readonly location you'll get a SIGSEGV.

If you have an unitialized pointer and use it it may happen that it will point to another good location so you'll don't get a segfault. If you have a small array reading after it's bound may corrupt other memory areas if it doesn't get past the page boundary.

Also, since there are many pages, not all of them are really mapped. If you touch a non-mapped page you'll get a segfault. Actually, any access to a non mapped page will have to take into account copy on write, pages on swap, lazy loading, memory mapped files and other things. See this article on page fault handling, especially the second diagram there, posted here below too (but read the article for more explanations)

页面错误处理

You are mainly interested in what happens in user space and all paths leading to SIGSEGV. but kernel space is also interesting.


取消引用NULL指针。

#include <cstddef> //For NULL.
int* p1 = NULL; //p1 points to no memory address
*p1 = 3; //Segfault.

访问数组越界(可能):

int ia[10];
ia[10] = 4; // Someone forgot that arrays are 0-indexed! Possible Segfault.
链接地址: http://www.djcxy.com/p/43892.html

上一篇: 分段错误x86 <

下一篇: 什么会导致C ++中的分段错误?