摘要: /**********************常量指针***********************************/int int1=1;int int2=2;int int3=3;//1指向常量对象的指针 不能修改被指向的对象,但可以使指针指向其它对象 const int *pint1=&int1; //也可以写成 int const *pint1=&int1; *pi... 阅读全文
posted @ 2010-04-26 17:23 http_it 阅读(234) 评论(0) 推荐(0) 编辑