基础
c++里面的关键字
image-20250801092733557
const修饰指针有几种情况
const int *p = &a; 表明值不能修改,但是指向可以
int * const p = &
2025-08-01