Compartilhar via


toupper

Converte um caractere em maiúsculas.

template<Class CharType> 
   CharType toupper( 
      CharType _Ch,  
      const locale& _Loc 
   )

Parâmetros

  • _Ch
    O caractere a ser convertido para letras maiúsculas.

  • _Loc
    A localidade que contém a cadeia de caracteres a ser convertido.

Valor de retorno

O caractere convertido em maiúsculas.

Comentários

A função do modelo retorna use_facet<C<CharType> >(_Loc).toupper(_Ch).

Exemplo

// locale_toupper.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;

int main( )   
{
   locale loc ( "German_Germany" );
   char result1 = toupper ( 'h', loc );
   cout << "The upper case of 'h' in the locale is: "
        << result1 << "." << endl;
   char result2 = toupper ( 'H', loc );
   cout << "The upper case of 'H' in the locale is: "
        << result2 << "." << endl;
   char result3 = toupper ( '$', loc );
   cout << "The upper case of '$' in the locale is: "
        << result3 << "." << endl;
}

Saída

The upper case of 'h' in the locale is: H.
The upper case of 'H' in the locale is: H.
The upper case of '$' in the locale is: $.

Requisitos

localidade <deCabeçalho: >

Namespace: std