码迷,mamicode.com
首页 > 其他好文 > 详细

指针常量

时间:2015-07-29 18:41:22      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream.h>
#include<alloc.h> 
int main(){
char* const  pc ="asdf";
//pc ="dfgh"; error: assignment of read-only variable `pc‘
*pc =b;
*(pc+1)=c;
//*pc ++ =‘y‘; error: increment of read-only variable `pc‘
const int b =28;
//int *const pi =&b;  error: invalid conversion from `const int*‘ to `int*‘
}

被这个代码搞蒙了,然后我就看到了这篇文章

http://www.360doc.com/content/12/1013/09/2472295_241178117.shtml

 

指针常量

标签:

原文地址:http://www.cnblogs.com/FanPigPig/p/4686568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!