fengweip

导航

 

2018年3月29日

摘要: https://blog.csdn.net/21aspnet/article/details/1539951 阅读全文
posted @ 2018-03-29 10:46 fengweip 阅读(108) 评论(0) 推荐(0)
 
摘要: 在C++中指针与const的组合是C++笔试和面试中常见问题,现将其总结如下:一共有六种形式 (1)const int p; (2)const int* p; (3)int const* p; (4)int * const p;(5)const int * const p;(6)int const 阅读全文
posted @ 2018-03-29 10:03 fengweip 阅读(129) 评论(0) 推荐(0)