发布时间:2013-10-05 15:50:05
关于const指针和指向const变量的指针很容易混淆如:1、指向非const变量的指针int x=3,y;const int *p=&x;则p是指向const变量的指针,即使x不是const变量。x=5//合法p=&y//合法*p=6//非法2、指向const变量的指针const int x=3,y;const int *p=&x;x=4//非法p=&y;//合法*p=6;//非法3、指向非const变量.........【阅读全文】
阅读(871) | 评论(0) | 转发(0)