C 語言中 const 與指針的結合使用

請區分一下幾種指針的區別 一、const int *p 二、int const* p 三、int *const p; 四、const int const *p 五、const int *const p 解析: 一、const int *p 中 const 修飾的是 *p,所以不能經過 *p 修改其指向對象的值,可是能夠更改 p 的指向 例如: int a = 3; int b = 4; const
相關文章
相關標籤/搜索