C++中的变量初始化

Variable initialization in C++(C++中的变量初始化)
本文介绍了C++中的变量初始化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我的理解是int变量会自动初始化为0;然而,事实并非如此.下面的代码打印一个随机值.

My understanding is that an int variable will be initialized to 0 automatically; however, it is not. The code below prints a random value.

int main () 
{   
    int a[10];
    int i;
    cout << i << endl;
    for(int i = 0; i < 10; i++)
        cout << a[i] << " ";
    return 0;
}

  • 哪些规则(如果有)适用于初始化?
  • 具体来说,在什么条件下变量会自动初始化?
  • 推荐答案

    如果

    • 它是一个类/结构实例,其中默认构造函数初始化所有原始类型;像 MyClass 实例;
    • 您使用数组初始值设定项语法,例如int a[10] = {}(全部归零)或 int a[10] = {1,2};(除前两项外全部归零:a[0] == 1a[1] == 2)
    • 同样适用于非聚合类/结构,例如MyClass 实例 = {};(关于这方面的更多信息可以在 这里)
    • 这是一个全局/外部变量
    • 变量被定义为static(无论是在函数内还是在全局/命名空间范围内) - 感谢 Jerry
    • it's a class/struct instance in which the default constructor initializes all primitive types; like MyClass instance;
    • you use array initializer syntax, e.g. int a[10] = {} (all zeroed) or int a[10] = {1,2}; (all zeroed except the first two items: a[0] == 1 and a[1] == 2)
    • same applies to non-aggregate classes/structs, e.g. MyClass instance = {}; (more information on this can be found here)
    • it's a global/extern variable
    • the variable is defined static (no matter if inside a function or in global/namespace scope) - thanks Jerry

    永远不要相信一个普通类型(int、long、...)的变量会被自动初始化!它可能会发生在像 C# 这样的语言中,但不会发生在 C &C++.

    Never trust on a variable of a plain type (int, long, ...) being automatically initialized! It might happen in languages like C#, but not in C & C++.

    这篇关于C++中的变量初始化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do compilers treat variable length arrays(编译器如何处理变长数组)
Deduce template argument from std::function call signature(从 std::function 调用签名推导出模板参数)
check if member exists using enable_if(使用 enable_if 检查成员是否存在)
Standard Library Containers with additional optional template parameters?(具有附加可选模板参数的标准库容器?)
Uses of a C++ Arithmetic Promotion Header(C++ 算术提升标头的使用)
Parameter pack must be at the end of the parameter list... When and why?(参数包必须位于参数列表的末尾...何时以及为什么?)