std::char_traits::assign
De 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> void assign( CharT& r, CharT a ); |
(1) | |
CharT* assign( CharT* p, std::size_t count, CharT a ); |
(2) | |
Attribue un caractère .
Original:
Assigns a character.
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.
1)
Affecte
a caractère à r caractère .Original:
Assigns character
a to character r.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.
2)
Assigne
a caractère de chaque caractère en caractères count dans la séquence de caractères pointée par p .Original:
Assigns character
a to each character in count characters in the character sequence pointed to by p.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.
Paramètres
| a | - | caractère de la valeur à attribuer
Original: character value to assign The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| r | - | caractère à attribuer à
Original: character to assign to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| p | - | pointeur sur une séquence de caractères à affecter
Original: pointer to a character sequence to assign to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| count | - | la longueur de la séquence de caractères
Original: the length of the character sequence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Retourne la valeur
1)
(Aucun)
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.
2)
pExceptions
1)
2)
(Aucun)
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.
Complexité
1)
Constant .
Original:
Constant.
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.
2)
Linéaire dans
countOriginal:
Linear in
countThe 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.