const关键字详解
摘要:
const在函数前与函数后的区别一 const基础 如果const关键字不涉及到指针,我们很好理解,下面是涉及到指针的情况: int b = 500; const int* a = &b; [1] int const *a = &b; [2] int* const a = &b; [3] co... 阅读全文
posted @ 2014-09-18 22:17 阳台 阅读(181) 评论(0) 推荐(0)
posted @ 2014-09-18 22:17 阳台 阅读(181) 评论(0) 推荐(0)