当前位置:   article > 正文

【C语言】数组越界

【C语言】数组越界

1. 越界

1.1 静态数组越界

在C语言中,我们可以直接通过数组索引来访问数组中的元素。如果一个数组有 n 个元素,对这 n 个元素(索引从 0n-1 的元素)的访问都合法,如果对这 n 个元素之外的访问,就是非法的,称为越界(access out of range),例如:

#include <stdio.h>

#define SIZE 5

int main(int argc, char *argv[]) {
	int array[SIZE] = {0};
	unsigned index = 0;

	for (index = 0; index <= SIZE; index++) {
		printf("[%u] = %d\n",
				index, array[index]);
	}
	
	return 0;
}
/* The end of source file that named 'main.c' */
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

输出:

[0] = 0
[1] = 0
[2] = 0
[3] = 0
[4] = 0
[5] = 32766	#error overflow
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

有上面的输出就说明它并不会造成编译错误! 因为C语言的编译器并不会判断你的代码访问越界了。错误就这样通过编译了。
数组访问出现越界,结果是不可预测(可能导致程序崩溃、安全漏洞或其他不可预测的行为)。有时什么事也没有,程序一直运行(某些错误可能已经存在);有时则是程序崩溃。因此,在使用数组时一定要判断是否越界以保证程序的正确性。

1.2 动态数组越界

#include <stdio.h>
#include <stdlib.h>

#define SIZE 5

typedef struct coordinate {
    int x;
    int y;
} Coordinate;

int main(int argc, char *argv[]) {
    /*
     * Set an array that the size is 5.
     */
    Coordinate *array = calloc(SIZE, sizeof(Coordinate));
    /*
     * The index is used to loop.
     */
    unsigned index = 0;

    for (index = 0; index < SIZE * 2; index++) {
        printf("[%u]=(%d, %d)\n",
                index,
                array[index].x,
                array[index].y);
    }

    free(array);
    array = NULL;

    return 0;
}
/* The end of source file */
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

编译后输出:

[0]=(0, 0)
[1]=(0, 0)
[2]=(0, 0)
[3]=(0, 0)
[4]=(0, 0)
[5]=(0, 0)
[6]=(0, 0)
[7]=(0, 0)
[8]=(0, 0)
[9]=(0, 0)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

可以看到申请的内存长度为 SIZE = 5,但是循环输出次数为 SIZE * 2存在逻辑错误却可以编译执行,还不会报错。 其是错误已经发生了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/397857
推荐阅读
相关标签
  

闽ICP备14008679号