摘要:
软件开发人员和程序员语录 1.A good programmer is someone who always looks both ways before crossing a one-way street. (Doug Linder) 好的程序员即使在过单行道时也总是会环顾两边。 2.Don’t 阅读全文
摘要:
一、const基础 如果const关键字不涉及到指针,我们很好理解,下面是涉及到指针的情况: int b = 500; const int * a = &b; [1] int const *a = &b; [2] int* const a = &b; [3] const int* const a = 阅读全文