C语言指针中const限定符的使用及相关操作
1. 使用const限定符与指针
在C语言中, const 限定符与指针的结合使用能为数据提供不同级别的保护和灵活性。
1.1 非常量指针指向常量数据
非常量指针指向常量数据意味着指针本身可以被修改,使其指向不同的数据项,但它所指向的数据不能被修改。这种指针常用于函数接收数组参数,函数仅处理数组元素而不修改它们。
例如,下面的 printCharacters 函数使用非常量指针指向常量数据来逐个打印字符串中的字符:
// Fig. 7.11: fig07_11.c
// Printing a string one character at a time using
// a non-constant pointer to constant data.
#include <stdio.h>
void printCharacters(const char *sPtr);
int main(void)
{
// initialize char array
char string[] = "print characters of a string";
puts("The string is:");
printCharacters(string);
puts("");
}
// sPtr cannot be used to modify the character to which it points,
// i.e., sPt
超级会员免费看
订阅专栏 解锁全文
354

被折叠的 条评论
为什么被折叠?



