美文网首页
C++的变量初始化

C++的变量初始化

作者: 驭鹤真人 | 来源:发表于2017-02-24 17:09 被阅读0次

    Storage classes

    The storage for variables with global or namespace scopeis allocated for the entire duration of the program. This is known asstatic storage, and it contrasts with the storage forlocal variables(those declared within a block). These use what is known as automatic storage. The storage for local variables is only available during the block in which they are declared; after that, that same storage may be used for a local variable of some other function, or used otherwise.

    But there is another substantial difference between variables withstatic storageand variables withautomatic storage:

    - Variables with static storage(such as global variables) that are not explicitly initialized are automatically initialized to zeroes.

    - Variables with automatic storage(such as local variables) that are not explicitly initialized are left uninitialized, and thus have an undetermined value.

    Array

    number of elements in the array, must be a constant expression, since arrays are blocks of static memory whose size must be determined at compile time, before the program runs.

    By default, regular arrays of local scope(for example, those declared within a function) are left uninitialized. This means that none of its elements are set to any particular value; their contents are undetermined at the point the array is declared.

    Static arrays, and those declared directly in a namespace (outside any function), are always initialized. If no explicit initializer is specified, all the elements are default-initialized (with zeroes, for fundamental types).

    相关文章

      网友评论

          本文标题:C++的变量初始化

          本文链接:https://www.haomeiwen.com/subject/dmqwwttx.html