std::string
Section: 27.4.3 [basic.string] Status: NAD Submitter: Andrzej Krzemieński Opened: 2014-03-13 Last modified: 2018-06-23
Priority: 4
View other active issues in [basic.string].
View all other issues in [basic.string].
View all issues with NAD status.
Discussion:
The following code works in C++:
int i = 300; std::string threeHundred; threeHundred = i;
"Works" == "Compiles and doesn't have an undefined behavior". But it may not be obvious and in fact misleading what it does.
This assignment converts an int
to char
and then uses string
's assignment from char
. While
the assignment from char
can be considered a feature, being able to assign from an int looks like a safety gap. Someone
may believe C++ works like "dynamically typed" languages and expect a lexical conversion to take place.
char
could be deprecated and later removed, but as a less intrusive alternative one could
consider adding a SFINAEd deleted function template:
template <typename IntT> // enable if is_integral<IntT>::value basic_string& operator=(IntT) = delete;
[Lenexa 2015-06-06: Move to LEWG]
RS: std::string x('0' + n);
broken by this.
MC: This is an extension, move to LEWG.
Move to LEWG, consensus.
Previous resolution [SUPERSEDED]:
This wording is relative to N3936.
To 27.4.3 [basic.string], class template
basic_string
synopsis, add as indicated:basic_string& operator=(const basic_string& str); basic_string& operator=(basic_string&& str) noexcept; basic_string& operator=(const charT* s); basic_string& operator=(charT c); template <class IntT> basic_string& operator=(IntT i) = delete; basic_string& operator=(initializer_list<charT>);Add after 27.4.3.3 [string.cons] p26 as indicated:
basic_string& operator=(charT c);-26- Returns:
*this = basic_string(1,c)
.template <class IntT> basic_string& operator=(IntT i) = delete;-?- Remarks: This signature shall not participate in overload resolution unless
is_integral<T>::value
istrue
.
[LEWG: 2016-03, Jacksonville]
is_integral<T>::value
→ is_arithmetic<tmpl-arg>::value
+=
and push_back
.
Proposed resolution:
This should be addressed by a paper addressed to LEWG.