RAD Studio
ContentsIndex
PreviousUpNext
Use of Storage Class Specifiers

Provides information on C++ storage class specifiers. 

Storage classes specifiers are also called type specifiers. They dictate the location (data segment, register, heap, or stack) of an object and its duration or lifetime (the entire running time of the program, or during execution of some blocks of code).  

Storage class can be established by the declaration syntax, by its placement in the source code, or by both of these factors. 

The keyword mutable does not affect the lifetime of the class member to which it is applied. 

The storage class specifiers in C++ are:

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!