C/C++ 中 const int*、const int * const 和 int const * 之间的区别?

上述符号的含义如下 -

int* - Pointer to int. This one is pretty obvious.

int const * - Pointer to const int.

int * const - Const pointer to int

int const * const - Const pointer to const int

另请注意 -

const int * And int const * are the same.

const int * const And int const * const are the same.

如果您在阅读此类符号时遇到困惑,请记住螺旋规则:从变量名称开始,顺时针移动到下一个指针或类型。重复直到表达式结束。

以上是 C/C++ 中 const int*、const int * const 和 int const * 之间的区别? 的全部内容, 来源链接: utcz.com/z/347603.html

回到顶部