透徹講解指針常量、常量指針

指針常量: int* const p(按照英文順序往過翻譯:1.int*代表指針;2.const p代表常量,所以叫指針常量;const加到地址p前面,說明指針指向的地址不能變) 常量指針: const int* p(按照英文順序往過翻譯:1.const 代表常量;2.int* p代表指針,所以叫常量指針。const加到整個*p前面了,說明指針的指向的內容不能變) const int* const
相關文章
相關標籤/搜索