【笔记】C_const与指针

1.const指针的三种表示方式

const int* p1;
int const* p2;
int* const p3;

在最后一种情况下,指针是只读的,也就是 p3 本身的值不能被修改;在前面两种情况下,指针所指向的数据是只读的,也就是 p1、p2 本身的值可以修改(指向不同的数据),但它们指向的数据不能被修改。(资料上)
初学const,感觉资料上的有些不太理解,自己编写之后,以下是我的理解方法:

const 再 int*前,或者const在*前表示,p1 p2所指向的数据不能通过*p12来进行修改,const在int*后,表示p3无法指向其他数据。

int a = 100;
int b = 200;
int c = 300;
int d = 400;
const int* p1 = &a;
int const* p2 = &b;
int* const p3 = &c;
*p1 = 500;//vs报错,无法通过*p1更改指向的数值
p1 = &d;//正确,可以更改p1的指向
*p3 = 500;//正确,可以通过*p3修改指向的数据
p3 = &d;//vs报错,无法更改p3的指向

2.双const

const int* const p4;

表示不能更改p4的指向,也不能通过*p4更改指向的数据。

3.const修饰函数形参

编写一个从字符串中查找特定字符ch的函数:

#include <stdio.h>
#include <string.h>
#pragma warning(disable:4996)
int strnum(const char* str,char ch){
	int n = 0;
	int len = strlen(str);
	for(int i=0;i<len;i++){
		if(str[i] == ch){
			n++
		}
	}
	return n;
}

int main(){
	const char* str = "hello world";
	printf("%d",strnum(str,'o'));
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值