std::uninitialized_copy
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody>| Elemento definito nell'header <memory>
|
||
template< class InputIt, class Size, class ForwardIt > ForwardIt uninitialized_copy_n( InputIt first, Size count, ForwardIt d_first); |
(dal C++11) | |
Copie
count elementi da un inizio montuoso a first ad un inizio di memoria non inizializzata zona a d_first. Gli elementi della zona non inizializzata sono costruiti utilizzando il costruttore di copia.Original:
Copies
count elements from a range beginning at first to an uninitialized memory area beginning at d_first. The elements in the uninitialized area are constructed using copy constructor.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Se viene generata un'eccezione durante l'inizializzazione, la funzione non ha effetti.
| This section is incomplete Reason: update possible implementation to reflect this |
Original:
If an exception is thrown during the initialization, the function has no effects.
| This section is incomplete Reason: update possible implementation to reflect this |
The text has been machine-translated via