继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

C++离港篇const 示例注意事项

qq_顺7zi然_0
关注TA
已关注
手记 1
粉丝 0
获赞 7

const int x=3; int y=&x; 错误
int x=3; const int
y=&x; 正确
权限大的接收权限小的是错误的
权限小的接收权限大的是正确的

看const用法技巧可以先忽略类型看const所指的后面

典型例子

①int x=3; const int &y=x;//x=10;正确//y=20;错误,不能改变y的值

②const int x=3;x=5;错误

③int x=3; const int y=x;y=5;错误

④int x=3;const int y=&x;y=5;错误

⑤int x=3,z=4;int *const y=&x;y=&z;错误

⑥const int x=3; const int &y=x;y=5;错误

打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP