指針常量與常量指針區別 絕對能理解

問題引出: 根據const修飾既可以修飾值,又可以修飾指針 分爲如下情況: ①const int p; //p就是個常量,這個很熟悉 ②const int *p; ③int const *p; ④int * const p; ⑤const int * const p; ⑥int const * const p; 怎麼讀? 遇到const讀作常量 遇到*讀作指針 記憶特性技巧 const 在*p之前
相關文章
相關標籤/搜索