终身会员
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
rldts
博客园
首页
新随笔
联系
订阅
管理
2014年10月11日
喜闻乐见的const int *p、int* const p、const int* const p
摘要: 不废话直接代码示例: 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)
编辑
公告