## 1.The Definition Of const Const type is that people use type specifier **const** signiture type to demonstrate,const variables or objects can not be updated。 ## 2. Effect Of Const (1)define variable ``` const int a=100; ``` (2) check type The difference between const variable and define variable: ~~**Constants have types, which can be checked by the compiler; the define macro definition has no data type, it is just a simple string replacement, and cannot be checked for security **~~ Thanks for point this bug out. > https://github.com/Light-City/CPlusPlusThings/issues/5 Only variables of type integer or enumeration are defined by `const`. In other cases, it is only a 'const' qualified variable and should not be confused with constants. (3)prevent modification, protect and increase program robustness ``` void f(const int i){ i++; //error! } ``` (4)Save space and avoid unnecessary memory allocation From the compile point of view, the variables can be defined by const only give the corresponding memory address. Meanwhile the #define gives an immediate number. ## 3.const object is the file local variable by default
Attention:not const will be set as extern by default.For the const variable to be accessible in other files, it must be explicitly specified as extern in the file
> Access of variables not modified by const in different files ``` // file1.cpp int ext // file2.cpp #include