Const 關鍵字 (Const Keyword)
Const 關鍵字 教學與筆記。
說明
如果希望宣告的變數是唯讀
的,可使用 Const 關鍵字。
int const a
1 | int const a = 1; |
const int a
與 int const a 相同。
int const *p = &a
不可改變指定變數的值
;但可改變指定成其他變數
。
1 | int a = 1; |
const int *p = &a
與 int const *p 相同。
int *const p = &a
可改變指定變數的值
;但不可改變指定成其他變數
。
1 | int a = 1; |
const int *const p = &a
不可改變指定變數的值
;也不可改變指定成其他變數
。
Const 關鍵字 (Const Keyword)