当前位置:网站首页>2、const 型指针
2、const 型指针
2022-07-02 11:21:00 【Little BigUs】
const 限定符用于标记一个变量为只读,但是当修饰指针的时候有点复杂。
首先,const int *pa
和int const *pa
的效果都是一样的,这两个完全等价,这个const修饰的是*pa这个整体,也就是说*pa这个整体是只读的,但是pa(不加 *)是可以修改的。它指向的变量也是可以修改的。举个例子
int a = 100;
const int *pa = &a;
printf("%d\n",*pa);//100
a = 200;
printf("%d\n",*pa);//200
int a = 100;
int b = 200;
const int *pa = &a;
printf("%d\n",*pa);//100
pa = &b;
printf("%d\n",*pa);//200
int a = 100;
const int *pa = &a;
printf("%d\n",*pa);//100
*pa = 200;//报错,*pa是const型的,只读
而 int * const pa
中pa也是一个指针,但是这个const修饰的是pa而不再是*pa这个整体了 ,也就是说,此时可以通过*pa来修改a的值了,但是pa是不可变的,也就是pa只能指向a了,不能再把他指向b,因为pa的值就是它指向的目标的地址,这是只读的。
当然我们也可以用const int * const pa
这种格式,这样的话就是pa和*pa都是只读的。
边栏推荐
- Packet capturing tool Fiddler learning
- NLA自然语言分析实现数据分析零门槛
- 无主灯设计:如何让智能照明更加「智能」?
- QT new project
- Qt新建项目
- Custom events, global event bus, message subscription and publishing, $nexttick
- [development environment] StarUML tool (download software | StarUML installation | StarUML creation project)
- Getting started with QT - making a simple calculator
- PHP linked list creation and traversal
- Generally speaking, if the error of inconsistent tab and space occurs frequently
猜你喜欢
Tip: SQL Server blocked the state 'openrowset/opendatasource' of component 'ad hoc distributed queries'
The global special paper revenue in 2021 was about $27 million, and it is expected to reach $35 million in 2028. From 2022 to 2028, the CAGR was 3.8%
MySQL45讲——学习极客时间MySQL实战45讲笔记—— 04 | 深入浅出索引(上)
kaggle如何使用utility script
uniapp自动化测试学习
Tencent cloud tstor unified storage passed the evaluation of the first batch of basic file storage capabilities of the ICT Institute
每日学习3
Daily learning 2
The use of TestNG, the testing framework (II): the use of TestNG XML
腾讯云 TStor 统一存储通过信通院首批文件存储基础能力评测
随机推荐
Packet capturing tool Fiddler learning
<口算练习机 方案开发原理图>口算练习机/口算宝/儿童数学宝/儿童计算器 LCD液晶显示驱动IC-VK1621B,提供技术支持
Methods of software testing
P1908 reverse sequence pair
2022家用投影仪首选!当贝F5强悍音画效果带来极致视听体验
<口算練習機 方案開發原理圖>口算練習機/口算寶/兒童數學寶/兒童計算器 LCD液晶顯示驅動IC-VK1621B,提供技術支持
博睿数据一体化智能可观测平台入选中国信通院2022年“云原生产品名录”
Convolutional neural network (Introduction)
线性dp求解 最长子序列 —— 小题三则
自定义事件,全局事件总线,消息订阅与发布,$nextTick
C crystal report printing
软件测试的方法
篇9:XShell免费版安装
Analysis of CPU surge in production environment service
联合搜索:搜索中的所有需求
【虹科技术分享】如何测试 DNS 服务器:DNS 性能和响应时间测试
Tencent cloud tstor unified storage passed the evaluation of the first batch of basic file storage capabilities of the ICT Institute
QT new project
P1908 逆序对
默认插槽,具名插槽,作用域插槽