摘要: 不废话直接代码示例: 1 void f(const int *p) { 2 3 int b = 10; 4 5 *p = 10; // error 6 7 p = &b; // fine 8 9 }10 11 void f(int* const p) {12 13 ... 阅读全文
posted @ 2014-10-11 15:45 rldts 阅读(222) 评论(0) 推荐(0) 编辑