const指针语义 -- const int* const p ; const int *p ; int * const p;
最新推荐文章于 2023-10-11 22:41:20 发布
本文介绍了如何分析const修饰指针的问题,提供了一种简化方法。通过去掉变量类型,专注于const的位置,确定const修饰的对象。例如:const int* const p表示p的指向不可变,其指向的值也不可变;const int *p表示指针指向的对象值不可变,但p的指向可以改变。
摘要由CSDN通过智能技术生成