当前位置:网站首页>const-modified pointer variable (detailed)

const-modified pointer variable (detailed)

2022-08-10 15:21:00 Wink to

const修饰的指针变量

一、未被const修饰的指针变量

Pointer variables can be modified
例1:

#include <stdio.h>
int main()
{
    
	//未被const修饰的指针变量
	
	int a = 10;
	int b = 20;
	int* p = &a;
	*p = 20;//可修改
	p = &b;//可修改
	retrun 0;
}

二、constThe decorated pointer points to the content

指针 “指向的内容” 不可修改
例2:

#include <stdio.h>
int main()
{
    
	// const如果放在*的左边
	
	int a = 10;
	int b = 20;

	const int* p = &a;//const与最近的*结合,修饰的是指针 “指向的内容(即&a的值)” ,保证(&a的值)不能通过指针(*p)来改变
	*p = 100;//原本的*p=10不能被修改,所以这里的*p=100是错误的,

	p = &b;//But the contents of the pointer variable itself(原本&a)可以修改
	return 0;
}

三、const修饰的指针变量本身

指针 “the content of the variable itself” 不可修改
例3:

#include <stdio.h>
int main()
{
    
	// const如果放在*的右边,

	int a = 10;
	int b = 20;

	int* const p = &a;//const与最近的p结合,修饰的是指针变量本身(即p),保证指针 “变量的内容(&a)” 不能被修改
	p = &b;//原本的p=&a不能被修改,所以这里的p=&b是错误的!

	*p = 100;//但指针 “指向的内容” (即&a的值),可以修改
}
原网站

版权声明
本文为[Wink to]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/222/202208101448105091.html