From WikiChip
Difference between revisions of "c/const"
< c

(Created page with "'''const''' is a C keyword and a type qualifier that declares an object to be nonmodifiable. The const ...")
 
m
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''const''' is a [[C]] [[keyword - C|keyword]] and a [[type qualifier - C|type qualifier]] that [[variable declaration - C|declares]] an object to be nonmodifiable. The const keyword can only appear once in a [[variable declaration - C|declaration]]. Objects declared with <code>const</code> in their declaration must not be assigned to a value during the execution of a program.
+
{{c title|Const}}
 +
'''const''' is a [[C]] {{C|keyword}} and a {{C|type qualifier}} that {{C|variable declaration|declares}} an object to be nonmodifiable. The const keyword can only appear once in a {{C|variable declaration|declaration}}. Objects declared with <code>const</code> in their declaration must not be assigned to a value during the execution of a program.
 +
 
 +
<source lang="C">const int i = 12345;</source>
  
 
The main purpose of const-qualified objects is to allow compilers to place such values in read-only memory. Additionally const-qualified objects might allow compilers to perform some additional consistency checks and possibly warn about invalid uses.
 
The main purpose of const-qualified objects is to allow compilers to place such values in read-only memory. Additionally const-qualified objects might allow compilers to perform some additional consistency checks and possibly warn about invalid uses.

Latest revision as of 07:47, 4 January 2015

const is a C keyword and a type qualifier that declares an object to be nonmodifiable. The const keyword can only appear once in a declaration. Objects declared with const in their declaration must not be assigned to a value during the execution of a program.

const int i = 12345;

The main purpose of const-qualified objects is to allow compilers to place such values in read-only memory. Additionally const-qualified objects might allow compilers to perform some additional consistency checks and possibly warn about invalid uses.

Pointers[edit]

Pointers can be both const-qualified and point to objects that are const-qualified.

pointer to a const value[edit]

It is possible and legal to take the address of an object which is declared using the const qualifier as long as the pointer points to a const type. For example,

const int i = 1000;
const int *iptr = &i;

It is also allowed and safe to assign an address of an object which is not const-qualified. Doing so will allow the code to inspect the value the pointer points to but not modify that value. For example,

int i = 1000;
const int *iptr = &i; /* the value iptr points to can be inspected but not modified using this pointer */

const pointer[edit]

It is possible to create a const pointer. Doing so creates a pointer object that can not be modified, however the value it points to can be modified. For example,

int i = 1000;
int *const iptr = &i;

The pointer iptr cannot be assigned to any other address, however the value it points to can be modified.