Namespaces
Variants

std:: uppercase, std:: nouppercase

From cppreference.net
< cpp ‎ | io ‎ | manip
Input/output manipulators
Floating-point formatting
Integer formatting
Boolean formatting
Field width and fill control
Other formatting
uppercase nouppercase
Whitespace processing
Output flushing
Status flags manipulation
Time and money I/O
(C++11)
(C++11)
(C++11)
(C++11)
Quoted manipulator
(C++14)
Défini dans l'en-tête <ios>
std:: ios_base & uppercase ( std:: ios_base & str ) ;
(1)
std:: ios_base & nouppercase ( std:: ios_base & str ) ;
(2)

Permet l'utilisation de caractères majuscules dans la sortie des nombres à virgule flottante et des entiers hexadécimaux. N'a aucun effet sur l'entrée.

1) Active le drapeau uppercase dans le flux str comme en appelant str. setf ( std:: ios_base :: uppercase ) .
2) Désactive le drapeau uppercase dans le flux str comme en appelant str. unsetf ( std:: ios_base :: uppercase ) .

Ceci est un manipulateur d'E/S, il peut être appelé avec une expression telle que out << std :: uppercase pour tout out de type std::basic_ostream ou avec une expression telle que in >> std :: uppercase pour tout in de type std::basic_istream .

Table des matières

Paramètres

str - référence au flux d'E/S

Valeur de retour

str (référence au flux après manipulation).

Exemple

#include <iostream>
int main()
{
    std::cout << std::hex << std::showbase
              << "0x2a with uppercase: " << std::uppercase << 0x2a << '\n'
              << "0x2a with nouppercase: " << std::nouppercase << 0x2a << '\n'
              << "1e-10 with uppercase: " << std::uppercase << 1e-10 << '\n'
              << "1e-10 with nouppercase: " << std::nouppercase << 1e-10 << '\n';
}

Sortie :

0x2a with uppercase: 0X2A
0x2a with nouppercase: 0x2a
1e-10 with uppercase: 1E-10
1e-10 with nouppercase: 1e-10

Voir aussi

efface les indicateurs spécifiés de ios_base
(fonction)
définit les indicateurs spécifiés ios_base
(fonction)