C++ 类成员的默认值是什么

What is the default value for C++ class members(C++ 类成员的默认值是什么)
本文介绍了C++ 类成员的默认值是什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

c++ 中结构成员和类成员的默认值是什么,这些规则有何不同(例如,在类/结构/原语/等之间)?是否存在有关默认值的规则不同的情况?

What is the default values for members of a struct and members of a class in c++, and how do these rules differ (e.g. between classes/structs/primitives/etc) ? Are there circumstances where the rules about the default values differs ?

推荐答案

在 C++ 中,结构和类在这方面没有区别.它们都被称为类类型.

There are no differences between structs and classes in this regard in C++. They all are called just class types.

类类型的成员在一般情况下没有默认值.为了让一个类成员获得一个确定性的值,它必须被初始化,这可以通过

Members of class types have no default values in general case. In order to for a class member to get a deterministic value it has to be initialized, which can be done by

  • 成员自身的默认构造函数
  • 封闭类的构造函数初始化列表
  • 为封闭类的对象显式指定初始化器(包括值初始化和使用聚合初始化器的初始化).

此外,所有具有静态存储持续时间的对象在程序启动时都被零初始化.

Additionally, all objects with static storage duration are zero-initialized at the program startup.

除了上述情况,类成员再次没有默认值,并且最初会包含不可预测的垃圾值.

Aside from the above cases, class members, once again, have no default values and will initially contain unpredictable garbage values.

这篇关于C++ 类成员的默认值是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)