This page is a snapshot from the LWG issues list, see the Library Active Issues List for more information and the meaning of C++11 status.
Section: 23 [containers] Status: C++11 Submitter: Alberto Ganesh Barbati Opened: 2008-07-22 Last modified: 2016-01-28
Priority: Not Prioritized
View other active issues in [containers].
View all other issues in [containers].
View all issues with C++11 status.
Discussion:
The term "default constructed" is often used in wording that predates
the introduction of the concept of value-initialization. In a few such
places the concept of value-initialization is more correct than the
current wording (for example when the type involved can be a built-in)
so a replacement is in order. Two of such places are already covered by
issue 867(i). This issue deliberately addresses the hopefully
non-controversial changes in the attempt of being approved more quickly.
A few other occurrences (for example in std::tuple
,
std::reverse_iterator
and std::move_iterator
) are left to separate
issues. For std::reverse_iterator
, see also issue 408(i). This issue is
related with issue 724(i).
[ San Francisco: ]
The list provided in the proposed resolution is not complete. James Dennett will review the library and provide a complete list and will double-check the vocabulary.
[ 2009-07 Frankfurt ]
The proposed resolution is incomplete.
Move to Tentatively NAD Future. Howard will contact Ganesh for wording. If wording is forthcoming, Howard will move it back to Review.
[ 2009-07-18 Ganesh updated the proposed wording. ]
Howard: Moved back to Review. Note that 16.4.4.2 [utility.arg.requirements] refers to a section that is not in the current working paper, but does refer to a section that we expect to reappear after the de-concepts merge. This was a point of confusion we did not recognize when we reviewed this issue in Frankfurt.
Howard: Ganesh also includes a survey of places in the WP surveyed for changes of this nature and purposefully not treated:
Places where changes are not being proposed
In the following paragraphs, we are not proposing changes because it's not clear whether we actually prefer value-initialization over default-initialization (now partially covered by 1012(i)):
20.3.1.3.2 [unique.ptr.single.ctor] para 3 e 7
24.5.1.4 [reverse.iter.cons] para 1
[move.iter.op.const] para 1
In the following paragraphs, the expression "default constructed" need not be changed, because the relevant type does not depend on a template parameter and has a user-provided constructor:
[func.referenceclosure.invoke] para 12, type: reference_closure
32.4.3.3 [thread.thread.constr] para 30, type: thread
32.4.3.6 [thread.thread.member] para 52, type: thread_id
32.4.5 [thread.thread.this], para 1, type: thread_id
[ 2009-08-18 Daniel adds: ]
I have no objections against the currently suggested changes, but I also cross-checked with the list regarding intentionally excluded changes, and from this I miss the discussion of
27.4.3.2 [string.require] p. 2:
"[..] The
Allocator
object used shall be a copy of theAllocator>
object passed to thebasic_string
object's constructor or, if the constructor does not take anAllocator
argument, a copy of a default-constructedAllocator
object."N2723, 29.5.3.4 [rand.req.eng], Table 109, expression "
T()
":Pre-/post-condition: "Creates an engine with the same initial state as all other default-constructed engines of type
X
."as well as in 29.5.6 [rand.predef]/1-9 (N2914), 29.5.8.1 [rand.util.seedseq]/3, 31.7.5.2.2 [istream.cons]/3, 31.7.6.2.2 [ostream.cons]/9 (N2914), 28.6.12 [re.grammar]/2, 32.4.3.5 [thread.thread.assign]/1 (N2914),
[ Candidates for the "the expression "default constructed" need not be changed" list ]
I'm fine, if these would be added to the intentionally exclusion list, but mentioning them makes it easier for other potential reviewers to decide on the relevance or not-relevance of them for this issue.
I suggest to remove the reference of [func.referenceclosure.invoke] in the "it's not clear" list, because this component does no longer exist.
I also suggest to add a short comment that all paragraphs in the resolution whether they refer to N2723 or to N2914 numbering, because e.g. "Change 23.3.5.2 [deque.cons] para 5" is an N2723 coordinate, while "Change 23.3.5.3 [deque.capacity] para 1" is an N2914 coordinate. Even better would be to use one default document for the numbering (probably N2914) and mention special cases (e.g. "Change 16.4.4.2 [utility.arg.requirements] para 2" as referring to N2723 numbering).
[ 2009-08-18 Alisdair adds: ]
I strongly believe the term "default constructed" should not appear in the library clauses unless we very clearly define a meaning for it, and I am not sure what that would be.
In those cases where we do not want to replace "default constructed" with "vale initialized" we should be using "default initialized". If we have a term that could mean either, we reduce portability of programs.
I have not done an exhaustive review to clarify if that is a vendor freedom we have reason to support (e.g. value-init in debug, default-init in release) so I may yet be convinced that LWG has reason to define this new term of art, but generally C++ initialization is confusing enough without supporting further ill-defined terms.
[ 2009-10 Santa Cruz: ]
Move to Ready.
[ 2010 Pittsburgh: ]
Moved to review in order to enable conflict resolution with 704(i).
[ 2010-03-26 Daniel harmonized the wording with the upcoming FCD. ]
[ 2010 Rapperswil: ]
Move to Ready.
[ Adopted at 2010-11 Batavia ]
Proposed resolution:
Change 16.4.4.2 [utility.arg.requirements] para 2:
2 In general, a default constructor is not required. Certain container class member function signatures specify
the default constructorT()
as a default argument.T()
shall be a well-defined expression (8.5) if one of those signatures is called using the default argument (8.3.6).
Change 23.3.5.2 [deque.cons] para 3:
3 Effects: Constructs a deque with
n
default constructedvalue-initialized elements.
Change 23.3.5.3 [deque.capacity] para 1:
1 Effects: If
sz < size()
, equivalent toerase(begin() + sz, end());
. Ifsize() < sz
, appendssz - size()
default constructedvalue-initialized elements to the sequence.
Change [forwardlist.cons] para 3:
3 Effects: Constructs a
forward_list
object withn
default constructedvalue-initialized elements.
Change [forwardlist.modifiers] para 22:
22 Effects: [...] For the first signature the inserted elements are
default constructedvalue-initialized, and for the second signature they are copies ofc
.
Change 23.3.9.2 [list.cons] para 3:
3 Effects: Constructs a
list
withn
default constructedvalue-initialized elements.
Change 23.3.9.3 [list.capacity] para 1:
1 Effects: If
sz < size()
, equivalent tolist<T>::iterator it = begin(); advance(it, sz); erase(it, end());
. Ifsize() < sz
,appends sz - size()
default constructedvalue-initialized elements to the sequence.
Change 23.3.11.2 [vector.cons] para 3:
3 Effects: Constructs a
vector
withn
default constructedvalue-initialized elements.
Change 23.3.11.3 [vector.capacity] para 9:
9 Effects: If
sz < size()
, equivalent toerase(begin() + sz, end());
. Ifsize() < sz
, appendssz - size()
default constructedvalue-initialized elements to the sequence.