Can std::string s; throw under any circumstances? Is this regulated by the standard (interested in C++03, in case there are differences)?
This was changed by WG21/N4002. The first working paper contains it I see is WG21/N4296:
// 21.4.2, construct/copy/destroy:
basic_string() noexcept : basic_string(Allocator()) { }
In C++11, the default constructor actually takes one (defaulted) argument, namely the allocator (21.4.2):
explicit basic_string(const Allocator& a = Allocator());
This constructor is not declared as noexcept
. (I suppose that would require the allocator to have a non-throwing copy constructor.) As Jonathan and Bo point out, the allocator's copy constructor must not throw any exceptions, but the string's constructor is allowed to perform throwing operations (e.g. allocate an initial piece of memory). It should certainly be possible to write a string-like class that as a no-throwing, constexpr
constructor, but the standard library string is not specified to be like that.
std::allocator
's copy ctor is noexcept
–
Overzealous throw()
, and the rest basic_string()
does is only to reinterpret a statically allocated array as an empty string. Only this reinterpretation part is not marked throw()
, and everything else is. Can a reinterpret_cast
throw? –
Tritanopia bad_alloc
. Most implementations don't, but you cannot formally rely on that. –
Hyo This was changed by WG21/N4002. The first working paper contains it I see is WG21/N4296:
// 21.4.2, construct/copy/destroy:
basic_string() noexcept : basic_string(Allocator()) { }
Sure if allocation isn't possible for any reason it would throw
© 2022 - 2024 — McMap. All rights reserved.
noexcept
. – Seasonalnoexcept
in C++11, and copy constructors to be allowed to throw for obvious reasons, but an empty constructor... I'm sure it can be special-cased to not allocate anything, but is it done like that is the question. – Tritanopia