std::char_traits::move
Aus cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> CharT* move( CharT* dest, const CharT* src, std::size_t count ); |
||
Kopien
count Zeichen aus Zeichenkette, auf die src eine Zeichenkette, auf die dest .Original:
Copies
count character from character string pointed to by src to character string pointed to by dest.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.
Führt richtig, auch wenn die kopierten Zeichen überlappen, dh
src in [ist dest, dest + count) .Original:
Performs correctly even if the copied character ranges overlap, i.e.
src is in [dest, dest + count).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.
Parameter
| dest | - | Zeiger auf eine Zeichenkette zu kopieren
Original: pointer to a character string to copy to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| src | - | Zeiger auf eine Zeichenkette aus kopieren
Original: pointer to a character string to copy from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| count | - | die Anzahl der zu kopierenden Zeichen
Original: the number of characters to copy The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
dest
Ausnahmen
(None)
Original:
(none)
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.
Komplexität
Linear .
Original:
Linear.
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.