Changes between Version 3 and Version 4 of const
- Timestamp:
- May 13, 2010, 4:47:48 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
const
v3 v4 3 3 == Syntax review == 4 4 5 ||`const int x;` ||The value of the `int` cannot be changed.||6 ||`const int *p;` ||The value of the `int` cannot be changed through this pointer.||5 ||`const int x;`[[br]]`int const x;`||The value of the `int` cannot be changed.|| 6 ||`const int *p;`[[br]]`int const *p;`||The value of the `int` cannot be changed through this pointer.|| 7 7 ||`int *const p;`||The value of the pointer cannot be changed.|| 8 8 ||`const int *const p;`||The value of the pointer cannot be changed, and the value of the `int` cannot be changed through this pointer.||