本文介绍了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] == 1和a[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) orint a[10] = {1,2};(all zeroed except the first two items:a[0] == 1anda[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++中的变量初始化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)