C++ 概念: DefaultConstructible
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
指定该类型的一个实例是默认构造.
原文:
Specifies that an instance of the type can be default constructed.
[编辑] 要求
该类型必须实现以下功能:1
原文:
The type must implement the following functions:
Type::Type
Type::Type(); |
||
默认构造函数: constructs an instance of a type with default contents.
The following expressions must have the specified effects:
表达
|
Effects |
Type a1; | a1 默认初始化. |
Type a2{}; | a2 的值初始化. |
Type{} Type() |
一个临时对象类型
Type 值初始化.原文: a temporary object of type Type is value-initialized. |
[编辑] 另请参阅
检查类型是否使用默认构造函数 (类模板) |