std::toupper<div class="t-tr-text">(Std :: locale)<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">(std::locale)</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div>
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. |
| Défini dans l'entête <locale>
|
||
| template< class charT > charT toupper( charT ch, const locale& loc ); |
||
Convertit le caractère
ch en majuscules si possible, en utilisant les règles de conversion prévues par facette std::ctype l'endroit donné de .Original:
Converts the character
ch to uppercase if possible, using the conversion rules specified by the given locale's std::ctype facet.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.
Sommaire |
[modifier] Paramètres
| ch | - | caractère
Original: character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| loc | - | locale
Original: locale The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier] Retourne la valeur
Renvoie la forme majuscule de
ch si l'on est inscrit dans la localisation, sinon retourner ch inchangé .Original:
Returns the uppercase form of
ch if one is listed in the locale, otherwise return ch unchanged.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.
[modifier] Notes
Seulement 1:1 mappage de caractères peut être effectuée par cette fonction, par exemple, la forme majuscule du «ß» est (à quelques exceptions près) les deux chaîne de caractères "SS", qui ne peut être obtenu par std::toupper .
Original:
Only 1:1 character mapping can be performed by this function, e.g. the uppercase form of 'ß' is (with some exceptions) the two-character string "SS", which cannot be obtained by std::toupper.
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.
[modifier] Mise en œuvre possible
template< class charT > charT toupper( charT ch, const std::locale& loc ) { return std::use_facet<std::ctype<charT>>(loc).toupper(ch); } |
[modifier] Exemple
| This section is incomplete Reason: no example |
[modifier] Voir aussi
| converts a character to lowercase using the ctype facet of a locale (fonction générique) | |
| convertit un caractère en majuscules Original: converts a character to uppercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
| convertit le caractère large en majuscules Original: converts a wide character to uppercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |