手记

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

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;错误

1人推荐
随时随地看视频
慕课网APP