std::polymorphic<T, Allocator>::polymorphic - cppreference.com
From cppreference.com
|
(1) | (since C++26) |
|
(2) | (since C++26) |
|
(3) | (since C++26) |
|
(4) | (since C++26) |
|
(5) | (since C++26) |
|
(6) | (since C++26) |
|
(7) | (since C++26) |
|
(8) | (since C++26) |
|
(9) | (since C++26) |
|
(10) | (since C++26) |
|
(11) | (since C++26) |
|
(12) | (since C++26) |
Constructs a new polymorphic object.
Parameters
| a | - | the allocator to be associated |
| v | - | value with which to initialize the owned value |
| args | - | arguments with which to initialize the owned value |
| il | - | initializer list with which to initialize the owned value |
| other | - | another polymorphic object whose owned value (if exists) is copied
|
Effects
The construction of a new polymorphic object consists of the following steps:
2) Constructs the owned object:
- For overloads (1-8), calls
std::allocator_traits<Allocator>::construct(alloc,p, args...), wherepis a pointer of typeU*, it points to storage suitable for the owned object to be constructed, andargs...is an expression pack containing the initializer arguments.
- For overloads (9-12):
- If
otheris valueless, no owned object is constructed, and*thisis also valueless after construction. - Otherwise, if
otheris an rvalue reference andallocequalsother.alloc,*thistakes ownership of the owned object ofother. - Otherwise, the owned object is constructed using
allocas described above, where the type ofpis determined by the type of the object owned byother.
- If
| Overload | Initializer for... | Type of the owned object | valueless_after_move()after construction | |
|---|---|---|---|---|
alloc
|
the owned object | |||
| (1) | (empty) | (empty) | T
|
false
|
| (2) | a
| |||
| (3) | (empty) | std::forward<U>(v)
|
U
| |
| (4) | a
| |||
| (5) | (empty) | std::forward<Args>(args)
| ||
| (6) | a
| |||
| (7) | (empty) | ilist, std::forward<Args>(args)
| ||
| (8) | a
| |||
| (9) | see below | *other(only if other owns a value)
|
the type of the object owned by other
|
true only if other is valueless
|
| (10) | a
| |||
| (11) | std::move (other.alloc )
|
takes ownership (only if other owns a value)
| ||
| (12) | a
|
see below | ||
9) alloc is direct-non-list-initialized with std::allocator_traits<Allocator>:: select_on_container_copy_construction(other.alloc ).
12) The owned object is constructed as follows:
Constraints and supplement information
1,2) If any of the following values is false, the program is ill-formed:
std::is_default_constructible_v<T>std::is_copy_constructible_v<T>
1) This overload participates in overload resolution only if std::is_default_constructible_v<Allocator> is true.
3-8) These overloads participate in overload resolution only if the following values are all true:
std::derived_from<std::remove_cvref_t<U>, T>std::is_copy_constructible_v<std::remove_cvref_t<U>>std::is_constructible_v<std::remove_cvref_t<U>, /* argument types */>, where/* argument types */are:
3,4) U
5,6) Args...
7,8) std::initializer_list<I>&, Args...
3,5,7) These overloads participate in overload resolution only if std::is_default_constructible_v<Allocator> is true.
3,4) These overloads participate in overload resolution only if all following conditions are satisfied:
std::is_same_v<std::remove_cvref_t<U>, std::polymorphic>isfalse.Uis not a specialization of std::in_place_type_t.
5-8) These overloads participate in overload resolution only if std::is_same_v<std::remove_cvref_t<U>, U> is true.
Exceptions
Throws nothing unless std::allocator_traits<Allocator>::allocate or std::allocator_traits<Allocator>::construct throws.
12)