C-const
const 编程的时候分配一块地址。
const int Red = 0xFF0000;
const int Green = 0x00FF00;
const int Blue = 0x0000FF;
const 是可以被修改的。
int *p_k_red = &Red;
*p_k_red = 0;
const 编程的时候分配一块地址。
const int Red = 0xFF0000;
const int Green = 0x00FF00;
const int Blue = 0x0000FF;
const 是可以被修改的。
int *p_k_red = &Red;
*p_k_red = 0;