const int 和INT const区别

来源:互联网 发布:淘宝开店认证时间 编辑:程序博客网 时间:2024/05/22 05:21
 
const int 和INT const区别
2010-04-09 23:26

const int a = 5;
int const b = 6;

没区别
指针的时候有区别,引用也有区别

指针的话
1。int* const
2。const int*
3。int const*
这三个2,3是一样的,都是指向const值的指针
1是指针是const的。
原创粉丝点击