要确保原数组不被修改,可以使用常量指针(const pointer)或者将数组声明为常量(const array)。
- 使用常量指针(const pointer):在函数参数中将数组指针声明为常量指针,即不能通过指针修改数组元素的值。例如:
void func(const int *arr, int size) { // 不能修改arr指向的数组元素 }
- 将数组声明为常量(const array):在数组声明时使用const关键字,表示数组元素的值不能被修改。例如:
const int arr[] = {1, 2, 3, 4, 5};
这样在函数中对数组元素进行修改会导致编译错误。
通过以上两种方法可以确保原数组不被修改,保护数据的完整性。