Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/language/default initialization"

From cppreference.com
< cpp‎ | language
m
m (signed char -> unsigned char.)
 
(39 intermediate revisions by 14 users not shown)
Line 1: Line 1:
{{title|default initialization}}
+
{{title|Default-initialization}}
 
{{cpp/language/initialization/navbar}}
 
{{cpp/language/initialization/navbar}}
This is the initialization performed when a variable is constructed with no initializer.
+
This is the initialization performed when an object is constructed with no initializer.
  
 
===Syntax===
 
===Syntax===
 
{{sdsc begin}}
 
{{sdsc begin}}
{{sdsc | num=1 | {{spar|T}} {{spar| object}} {{ttb|;}}}}
+
{{sdsc|num=1|{{spar sep|T object}}{{ttb|;}}}}
{{sdsc | num=2 |{{ttb|new }} {{spar|T}} {{ttb|;}}
+
{{sdsc|num=2|{{ttb|new}} {{spar|T}}
{{ttb|new }} {{spar|T}} {{ttb|(}} {{ttb|)}} {{ttb|;}} {{mark|until c++03}}
+
 
}}
 
}}
 
{{sdsc end}}
 
{{sdsc end}}
  
 
===Explanation===
 
===Explanation===
Default initialization is performed in three situations:
+
Default-initialization is performed in three situations:
 
@1@ when a variable with automatic, static, or thread-local {{rlp|storage duration}} is declared with no initializer;
 
@1@ when a variable with automatic, static, or thread-local {{rlp|storage duration}} is declared with no initializer;
@2@ when an object with dynamic storage duration is created by a {{rlp|new|new-expression}} with no initializer {{rev inl|until=c++03|or when an object is created by a new-expression with the initializer consisting of an empty pair of parentheses}};
+
@2@ when an object with dynamic storage duration is created by a {{rlp|new|new-expression}} with no initializer;
@3@ when a base class or a non-static data member is not mentioned in a constructor [[cpp/language/initializer_list|initializer list]] and that constructor is called.
+
@3@ when a base class or a non-static data member is not mentioned in a {{rlp|constructor|constructor initializer list}} and that constructor is called.
  
The effects of default initialization are:
+
The effects of default-initialization are:
* if {{tt|T}} is a {{rev inl|until=c++11|non-POD}} class type, the constructors are considered and subjected to {{rlp|overload resolution}} against the empty argument list. The constructor selected (which is one of the {{rlp|default constructor}}s) is called to provide the initial value for the new object;
+
* if {{tt|T}} is a (possibly cv-qualified) {{rev inl|until=c++11|non-POD}} class type, the constructors are considered and subjected to {{rlp|overload resolution}} against the empty argument list. The constructor selected (which is one of the {{rlp|default constructor}}s) is called to provide the initial value for the new object;
 
* if {{tt|T}} is an array type, every element of the array is default-initialized;
 
* if {{tt|T}} is an array type, every element of the array is default-initialized;
* otherwise, nothing is done: the objects with automatic storage duration (and their subobjects) are initialized to indeterminate values.
+
* otherwise, no initialization is performed (see [[#Notes|notes]]).
  
 
{{rev begin}}
 
{{rev begin}}
 
{{rev|until=c++11|
 
{{rev|until=c++11|
Only (possibly cv-qualified) non-POD class types (or arrays thereof) with automatic storage duration were considered to be default-initialized when no initializer is used. Scalars and POD types with dynamic storage duration were considered to be not initialized (since C++11, this situation was reclassified as a form of default initialization).
+
Only (possibly cv-qualified) non-POD class types (or arrays thereof) with automatic storage duration were considered to be default-initialized when no initializer is used. Scalars and POD types with dynamic storage duration were considered to be not initialized (since C++11, this situation was reclassified as a form of default-initialization).
 
}}
 
}}
{{rev|until=c++03|
 
Prior to C++03 (which introduced {{rlp|value initialization}}), the expression {{c|new T()}} as well as a member initializer naming a base or a member with the initializer in the form of an empty pair of parentheses was classified as default initialization, but specified {{rlp|zero initialization}} for non-class types.
 
}}
 
{{rev end}}
 
  
 +
===Default-initialization of a const object===
 +
If a program calls for the default-initialization of an object of a {{rlp|cv|const}}-qualified type {{tt|T}}, T shall be a ''const-default-constructible'' class type or array thereof.
 +
 +
A class type {{tt|T}} is const-default-constructible if default-initialization of {{tt|T}} would invoke a user-provided constructor of {{tt|T}} {{rev inl|since=c++11|(not inherited from a base class)}} or if
 +
{{rrev multi|until1=c++11|rev1=
 +
* each direct non-static data member {{tt|M}} of {{tt|T}} is of class type {{tt|X}} (or array thereof), {{tt|X}} is const-default-constructible, and
 +
* {{tt|T}} has no direct {{rlp|union#Union-like classes|variant members}}, and
 +
|rev2=
 +
* each direct non-variant non-static data member {{tt|M}} of {{tt|T}} has a {{rlp|data members#Member initialization|default member initializer}} or, if {{tt|M}} is of class type {{tt|X}} (or array thereof), {{tt|X}} is const-default-constructible,
 +
* if {{tt|T}} is a union with at least one non-static data member, exactly one {{rlp|union#Union-like classes|variant member}} has a default member initializer,
 +
* if {{tt|T}} is not a union, for each anonymous union member with at least one non-static data member (if any), exactly one non-static data member has a default member initializer, and
 +
}}
 +
each {{rlp|object#Potentially constructed subobjects|potentially constructed}} base class of {{tt|T}} is const-default-constructible.
  
 +
===Indeterminate and erroneous values===
 
{{rev begin}}
 
{{rev begin}}
{{rev|until=c++11|
+
{{rev|until=c++26|
If {{tt|T}} is a cv-qualified type, its cv-unqualified version is used for the purpose of default-initialization.
+
When storage for an object with automatic or dynamic storage duration is obtained, the object has an ''indeterminate value''.
 +
 
 +
If no initialization is performed for an object, that object retains an indeterminate value until that value is replaced.
 +
}}
 +
{{rev|since=c++26|
 +
When storage for an object with automatic or dynamic storage duration is obtained, the bytes comprising the storage for the object have the following initial value:
 +
* If the object has dynamic storage duration, or is the object associated with a variable or {{rlp|function|function parameter}} whose first declaration is marked with {{attr|indeterminate}}, the bytes have ''indeterminate values''.
 +
* Otherwise, the bytes have ''erroneous values'', where each value is determined by the implementation independently of the state of the program.
 +
 
 +
If no initialization is performed for an object (including {{rlpsd|object#Subobjects}}), such a byte retains its initial value until that value is replaced.
 +
* If any bit in the {{rlp|object#Object representation and value representation|value representation}} has an indeterminate value, the object has an ''indeterminate value''.
 +
* Otherwise, if any bit in the value representation has an erroneous value, the object has an ''erroneous value''.
 
}}
 
}}
 
{{rev end}}
 
{{rev end}}
  
{{rev begin}}
+
If an evaluation produces an indeterminate value, the behavior is {{rlp|ub|undefined}}.
{{rev|since=c++14|
+
 
Use of an indeterminate value obtained by default-initializing a non-class variable of any type is {{rlp|ub|undefined behavior}}, except in the following cases:
+
{{rrev|since=c++26|
* if the indeterminate value of unsigned narrow character type is assigned to another variable with unsigned narrow character type (the value of the variable becomes indeterminate, but the behavior is not undefined);
+
If an evaluation produces an erroneous value, the behavior is {{rlp|ub|erroneous}}.
* if the indeterminate value of unsigned narrow character type is used to initialize another variable with unsigned narrow character type;
+
}}
* if the indeterminate value of unsigned narrow character type results from
+
 
:* the second or third operand of a conditional expression,
+
====Special cases====
:* the right operand of the comma operator,
+
The following types are ''uninitialized-friendly'':<!-- for exposition only, not defined in the standard -->
:* the operand of a cast or conversion to an unsigned narrow character type,
+
{{rrev|since=c++17|
:* a discarded-value expression.
+
* {{ltt std|cpp/types/byte}}
 +
}}
 +
* {{c/core|unsigned char}}
 +
* {{c/core|char}}, if its underlying type is {{c/core|unsigned char}}
 +
 
 +
Given an indeterminate{{rev inl|since=c++26| or erroneous}} value {{c|value}}, the ''uninitialized result value'' of {{c|value}} is:<!-- for exposition only, not defined in the standard -->
 +
* An indeterminate value, if {{c|value}} is also an indeterminate value.
 +
{{rrev|since=c++26|
 +
* {{c|value}}, if {{c|value}} is an erroneous value.
 +
}}
 +
 
 +
If an evaluation {{c|eval}} produces an indeterminate{{rev inl|since=c++26| or erroneous}} value {{c|value}} of an uninitialized-friendly type, the behavior is well-defined in the following cases:
 +
 
 +
* {{c|eval}} is the evaluation of one of the following expressions and operands:
 +
:* The second or third operand of a {{rlp|operator other#Conditional operator|conditional expression}}.
 +
:* The right operand of a {{rlp|operator other#Built-in comma operator|comma expression}}.
 +
:* The operand of an {{rlp|implicit conversion#Integral conversions|integral conversion}}, {{rlp|explicit cast}} or {{rlpt|static_cast}} to an uninitialized-friendly type.
 +
:* A {{rlp|expressions#Discarded-value expressions|discarded-value expression}}.
 +
: In this case, the result of the operation is the uninitialized result value of {{c|value}}.
 +
 
 +
* {{c|eval}} is an evaluation of the right operand of a {{rlp|operator assignment#Built-in simple assignment operator|simple assignment operator}} whose left operand is an lvalue of an uninitialized-friendly type.
 +
: In this case, the value of the object referred to by the left operand is replaced by the uninitialized result value of {{c|value}}.
 +
 
 +
* {{c|eval}} is the evaluation of the initialization expression when initializing an object of an uninitialized-friendly type.
 +
{{rrev|since=c++17|
 +
:* {{c|value}} cannot be of type {{ltt std|cpp/types/byte}} if the object being initialized is not of type {{ltt std|cpp/types/byte}}.
 +
}}
 +
: In this case, that object is initialized to the uninitialized result value of {{c|value}}.
 +
 
 +
Converting an indeterminate value of an uninitialized-friendly type produces an indeterminate value.
 +
 
 +
{{rrev|since=c++26|
 +
Converting an erroneous value of an uninitialized-friendly type produces an erroneous value, the result of the conversion is the value of the converted operand.
 +
}}
  
 
{{source|1=
 
{{source|1=
 +
// Case 1: Uninitialized objects with dynamic storage duration
 +
// All C++ versions: indeterminate value + undefined behavior
 
int f(bool b)
 
int f(bool b)
 
{
 
{
     int x;               // OK: the value of x is indeterminate
+
     unsigned char* c = new unsigned char;
     int y = x;           // undefined behavior
+
    unsigned char d = *c; // OK, “d” has an indeterminate value
     unsigned char c;    // OK: the value of c is indeterminate
+
     int e = d;           // undefined behavior
     unsigned char d = c; // OK: the value of d is indeterminate
+
     return b ? d : 0;    // undefined behavior if “b” is true
     int e = d;          // undefined behavior
+
}
     return b ? d : 0;    // undefined behavior if b is true
+
 
 +
// Case 2: Uninitialized objects with automatic storage duration
 +
// until C++26: indeterminate value + undefined behavior
 +
// since C++26: erroneous value + erroneous behavior
 +
int g(bool b)
 +
{
 +
    unsigned char c;    // “c” has an indeterminate/erroneous value
 +
   
 +
     unsigned char d = c; // no undefined/erroneous behavior,
 +
                        // but “d” has an indeterminate/erroneous value
 +
   
 +
    assert(c == d);      // holds, but both integral promotions have
 +
                        // undefined/erroneous behavior
 +
   
 +
     int e = d;          // undefined/erroneous behavior
 +
     return b ? d : 0;    // undefined/erroneous behavior if “b” is true
 +
}
 +
 
 +
// Same as case 2
 +
void h()
 +
{
 +
    int d1, d2;  // “d1” and “d2” have indeterminate/erroneous values
 +
    int e1 = d1; // undefined/erroneous behavior
 +
    int e2 = d1; // undefined/erroneous behavior
 +
   
 +
    assert(e1 == e2); // holds
 +
    assert(e1 == d1); // holds, undefined/erroneous behavior
 +
    assert(e2 == d1); // holds, undefined/erroneous behavior
 +
   
 +
    // no undefined/erroneous behavior,
 +
    // but “d2” has an indeterminate/erroneous value
 +
    std::memcpy(&d2, &d1, sizeof(int));
 +
   
 +
    assert(e1 == d2); // holds, undefined/erroneous behavior
 +
    assert(e2 == d2); // holds, undefined/erroneous behavior
 
}
 
}
 
}}
 
}}
}}
 
{{rev end}}
 
  
 
===Notes===
 
===Notes===
Default initialization of non-class variables with automatic and dynamic storage duration produces objects with indeterminate values (static and thread-local objects get [[cpp/language/zero_initialization|zero initialized]])
+
References and const scalar objects cannot be default-initialized.
  
If {{tt|T}} is a const-qualified type, it must be a class type with a user-provided default constructor.
+
{{feature test macro|value=201907L|std=C++20|__cpp_constexpr|Trivial default-initialization and {{rlp|asm|asm-declaration}} in {{c/core|constexpr}} functions}}
 
+
Reference cannot be default-initialized.
+
  
 
===Example===
 
===Example===
 
{{example
 
{{example
|
+
|
| code=
+
|code=
 
#include <string>
 
#include <string>
  
struct T1 { };
+
struct T1 { int mem; };
  
 
struct T2
 
struct T2
 
{
 
{
 
     int mem;
 
     int mem;
     T2() { } // "mem" is not in the initializer list
+
     T2() {} // “mem” is not in the initializer list
 
};
 
};
  
 
int n; // static non-class, a two-phase initialization is done:
 
int n; // static non-class, a two-phase initialization is done:
       // 1) zero initialization initializes n to zero
+
       // 1) zero-initialization initializes n to zero
       // 2) default initialization does nothing, leaving n being zero
+
       // 2) default-initialization does nothing, leaving n being zero
  
 
int main()
 
int main()
 
{
 
{
 +
    [[maybe_unused]]
 
     int n;            // non-class, the value is indeterminate
 
     int n;            // non-class, the value is indeterminate
     std::string s;    // class, calls default ctor, the value is "" (empty string)
+
     std::string s;    // class, calls default constructor, the value is ""
     std::string a[2]; // class, calls default ctor, the value is two ""
+
     std::string a[2]; // array, default-initializes the elements, the value is {"", ""}
//  int& r;          // error: default-initializing a reference
+
//  int& r;          // Error: a reference
//  const int n;      // error: default-initializing a const non-class
+
//  const int n;      // Error: a const non-class
//  const T1 t1;      // error: default-initializing a const class with implicit default ctor
+
//  const T1 t1;      // Error: const class with implicit default constructor
     T1 t1;            // OK: class, calls implicit default ctor
+
    [[maybe_unused]]
     const T2 t2;      // OK: const class with user-provided default ctor, calls it
+
     T1 t1;            // class, calls implicit default constructor
                       // t2.mem is default-initialized (to indeterminate value)
+
     const T2 t2;      // const class, calls the user-provided default constructor
 +
                       // t2.mem is default-initialized
 
}
 
}
| output=
+
|output=
 
}}
 
}}
 +
 +
===Defect reports===
 +
{{dr list begin}}
 +
{{dr list item|wg=cwg|dr=178|std=C++98|before=there was no value-initialization;<br>empty initializer invoked default-initialization<br>(though {{c|new T()}} also performs zero-initialization)|after=empty initializer invokes<br>value-initialization}}
 +
{{dr list item|wg=cwg|dr=253|std=C++98|before=default-initialization of a const object could not<br>call an implicitly declared default constructor|after=allowed if all subobjects are initialized}}
 +
{{dr list item|wg=cwg|dr=616|std=C++98|before=lvalue to rvalue conversion of any<br>uninitialized object was always UB|after=indeterminate {{c/core|unsigned char}} is allowed}}
 +
{{dr list item|wg=cwg|dr=1787|std=C++98|before=read from an indeterminate {{c/core|unsigned char}}<br>cached in a register was UB|after=made well-defined}}
 +
{{dr list end}}
  
 
===See also===
 
===See also===
* [[cpp/language/direct_initialization|direct initialization]]
+
* {{rlp|converting constructor}}
* [[cpp/language/copy_initialization|copy initialization]]
+
* {{rlp|default constructor}}
* [[cpp/language/list_initialization|list initialization]]
+
* {{rlpt|explicit}}
 +
* {{rlp|initialization}}
 +
** {{rlp|aggregate initialization}}
 +
** {{rlp|constant initialization}}
 +
** {{rlp|copy initialization|copy-initialization}}
 +
** {{rlp|direct initialization|direct-initialization}}
 +
** {{rlp|list initialization|list-initialization}}
 +
** {{rlp|reference initialization}}
 +
** {{rlp|value initialization|value-initialization}}
 +
** {{rlp|zero initialization|zero-initialization}}
 +
* {{rlpt|new}}
  
[[de:cpp/language/default initialization]]
+
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
[[es:cpp/language/default initialization]]
+
[[fr:cpp/language/default initialization]]
+
[[it:cpp/language/default initialization]]
+
[[ja:cpp/language/default initialization]]
+
[[pt:cpp/language/default initialization]]
+
[[ru:cpp/language/default initialization]]
+
[[zh:cpp/language/default initialization]]
+

Latest revision as of 23:42, 22 April 2024

 
 
C++ language
General topics
Flow control
Conditional execution statements
if
Iteration statements (loops)
for
range-for (C++11)
Jump statements
Functions
Function declaration
Lambda function expression
inline specifier
Dynamic exception specifications (until C++17*)
noexcept specifier (C++11)
Exceptions
Namespaces
Types
Specifiers
const/volatile
decltype (C++11)
auto (C++11)
constexpr (C++11)
consteval (C++20)
constinit (C++20)
Storage duration specifiers
Initialization
Expressions
Alternative representations
Literals
Boolean - Integer - Floating-point
Character - String - nullptr (C++11)
User-defined (C++11)
Utilities
Attributes (C++11)
Types
typedef declaration
Type alias declaration (C++11)
Casts
Memory allocation
Classes
Class-specific function properties
explicit (C++11)
static

Special member functions
Templates
Miscellaneous
 
 

This is the initialization performed when an object is constructed with no initializer.

Contents

[edit] Syntax

T object ; (1)
new T (2)

[edit] Explanation

Default-initialization is performed in three situations:

1) when a variable with automatic, static, or thread-local storage duration is declared with no initializer;
2) when an object with dynamic storage duration is created by a new-expression with no initializer;
3) when a base class or a non-static data member is not mentioned in a constructor initializer list and that constructor is called.

The effects of default-initialization are:

  • if T is a (possibly cv-qualified) non-POD(until C++11) class type, the constructors are considered and subjected to overload resolution against the empty argument list. The constructor selected (which is one of the default constructors) is called to provide the initial value for the new object;
  • if T is an array type, every element of the array is default-initialized;
  • otherwise, no initialization is performed (see notes).

[edit] Default-initialization of a const object

If a program calls for the default-initialization of an object of a const-qualified type T, T shall be a const-default-constructible class type or array thereof.

A class type T is const-default-constructible if default-initialization of T would invoke a user-provided constructor of T (not inherited from a base class)(since C++11) or if

Only (possibly cv-qualified) non-POD class types (or arrays thereof) with automatic storage duration were considered to be default-initialized when no initializer is used. Scalars and POD types with dynamic storage duration were considered to be not initialized (since C++11, this situation was reclassified as a form of default-initialization).

(until C++11)
  • each direct non-static data member M of T is of class type X (or array thereof), X is const-default-constructible, and
  • T has no direct variant members, and
(until C++11)
  • each direct non-variant non-static data member M of T has a default member initializer or, if M is of class type X (or array thereof), X is const-default-constructible,
  • if T is a union with at least one non-static data member, exactly one variant member has a default member initializer,
  • if T is not a union, for each anonymous union member with at least one non-static data member (if any), exactly one non-static data member has a default member initializer, and
(since C++11)

each potentially constructed base class of T is const-default-constructible.

[edit] Indeterminate and erroneous values

When storage for an object with automatic or dynamic storage duration is obtained, the object has an indeterminate value.

If no initialization is performed for an object, that object retains an indeterminate value until that value is replaced.

(until C++26)

When storage for an object with automatic or dynamic storage duration is obtained, the bytes comprising the storage for the object have the following initial value:

  • If the object has dynamic storage duration, or is the object associated with a variable or function parameter whose first declaration is marked with [[indeterminate]], the bytes have indeterminate values.
  • Otherwise, the bytes have erroneous values, where each value is determined by the implementation independently of the state of the program.

If no initialization is performed for an object (including subobjects), such a byte retains its initial value until that value is replaced.

  • If any bit in the value representation has an indeterminate value, the object has an indeterminate value.
  • Otherwise, if any bit in the value representation has an erroneous value, the object has an erroneous value.
(since C++26)

If an evaluation produces an indeterminate value, the behavior is undefined.

If an evaluation produces an erroneous value, the behavior is erroneous.

(since C++26)

[edit] Special cases

The following types are uninitialized-friendly:

(since C++17)
  • unsigned char
  • char, if its underlying type is unsigned char

Given an indeterminate or erroneous(since C++26) value value, the uninitialized result value of value is:

  • An indeterminate value, if value is also an indeterminate value.
  • value, if value is an erroneous value.
(since C++26)

If an evaluation eval produces an indeterminate or erroneous(since C++26) value value of an uninitialized-friendly type, the behavior is well-defined in the following cases:

  • eval is the evaluation of one of the following expressions and operands:
In this case, the result of the operation is the uninitialized result value of value.
  • eval is an evaluation of the right operand of a simple assignment operator whose left operand is an lvalue of an uninitialized-friendly type.
In this case, the value of the object referred to by the left operand is replaced by the uninitialized result value of value.
  • eval is the evaluation of the initialization expression when initializing an object of an uninitialized-friendly type.
  • value cannot be of type std::byte if the object being initialized is not of type std::byte.
(since C++17)
In this case, that object is initialized to the uninitialized result value of value.

Converting an indeterminate value of an uninitialized-friendly type produces an indeterminate value.

Converting an erroneous value of an uninitialized-friendly type produces an erroneous value, the result of the conversion is the value of the converted operand.

(since C++26)
// Case 1: Uninitialized objects with dynamic storage duration
// All C++ versions: indeterminate value + undefined behavior
int f(bool b)
{
    unsigned char* c = new unsigned char;
    unsigned char d = *c; // OK, “d” has an indeterminate value
    int e = d;            // undefined behavior
    return b ? d : 0;     // undefined behavior if “b” is true
}
 
// Case 2: Uninitialized objects with automatic storage duration
// until C++26: indeterminate value + undefined behavior
// since C++26: erroneous value + erroneous behavior
int g(bool b)
{
    unsigned char c;     // “c” has an indeterminate/erroneous value
 
    unsigned char d = c; // no undefined/erroneous behavior,
                         // but “d” has an indeterminate/erroneous value
 
    assert(c == d);      // holds, but both integral promotions have
                         // undefined/erroneous behavior
 
    int e = d;           // undefined/erroneous behavior
    return b ? d : 0;    // undefined/erroneous behavior if “b” is true
}
 
// Same as case 2
void h()
{
    int d1, d2;  // “d1” and “d2” have indeterminate/erroneous values
    int e1 = d1; // undefined/erroneous behavior
    int e2 = d1; // undefined/erroneous behavior
 
    assert(e1 == e2); // holds
    assert(e1 == d1); // holds, undefined/erroneous behavior
    assert(e2 == d1); // holds, undefined/erroneous behavior
 
    // no undefined/erroneous behavior,
    // but “d2” has an indeterminate/erroneous value
    std::memcpy(&d2, &d1, sizeof(int));
 
    assert(e1 == d2); // holds, undefined/erroneous behavior
    assert(e2 == d2); // holds, undefined/erroneous behavior
}

[edit] Notes

References and const scalar objects cannot be default-initialized.

Feature-test macro Value Std Feature
__cpp_constexpr 201907L (C++20) Trivial default-initialization and asm-declaration in constexpr functions

[edit] Example

#include <string>
 
struct T1 { int mem; };
 
struct T2
{
    int mem;
    T2() {} // “mem” is not in the initializer list
};
 
int n; // static non-class, a two-phase initialization is done:
       // 1) zero-initialization initializes n to zero
       // 2) default-initialization does nothing, leaving n being zero
 
int main()
{
    [[maybe_unused]]
    int n;            // non-class, the value is indeterminate
    std::string s;    // class, calls default constructor, the value is ""
    std::string a[2]; // array, default-initializes the elements, the value is {"", ""}
//  int& r;           // Error: a reference
//  const int n;      // Error: a const non-class
//  const T1 t1;      // Error: const class with implicit default constructor
    [[maybe_unused]]
    T1 t1;            // class, calls implicit default constructor
    const T2 t2;      // const class, calls the user-provided default constructor
                      // t2.mem is default-initialized
}

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
CWG 178 C++98 there was no value-initialization;
empty initializer invoked default-initialization
(though new T() also performs zero-initialization)
empty initializer invokes
value-initialization
CWG 253 C++98 default-initialization of a const object could not
call an implicitly declared default constructor
allowed if all subobjects are initialized
CWG 616 C++98 lvalue to rvalue conversion of any
uninitialized object was always UB
indeterminate unsigned char is allowed
CWG 1787 C++98 read from an indeterminate unsigned char
cached in a register was UB
made well-defined

[edit] See also