const在函数前与函数后的区别 [转]
摘要:
[转]http://blog.csdn.net/clozxy/article/details/5679887一 const基础 如果const关键字不涉及到指针,我们很好理解,下面是涉及到指针的情况: int b = 500; const int* a = &b; [1] int const *a = &b; [2] int* const a = &b; [3] const int* const a = &b; [4] 如果你能区分出上述四种情况,那么,恭喜你,你已经迈出了可喜的一步。不知道,也没关系,我们可以参考《effective c++》item21上的做 阅读全文
posted @ 2013-03-30 15:31 龙豆 阅读(795) 评论(0) 推荐(0) 编辑