const int 和 int const 的区别
时间: 2024-01-04 18:03:56 浏览: 129
深入const int *p与int * const p的区别详解(常量指针与指向常量的指针)
5星 · 资源好评率100%
const int 和 int const 都表示指向常量的指针,它们之间没有实质区别。const 关键字可以在类型的任何一侧使用。例如 const int * 和 int const * 都表示指向 int 类型常量的指针。而 const int * const 和 int const * const 则表示指向常量的指针本身也是常量。这意味着无法通过这些指针来修改指向的内容。
阅读全文