Condividi tramite


moneypunct::curr_symbol

Restituisce una sequenza specifica delle impostazioni locali di elementi da utilizzare come simbolo di valuta.

string_type curr_symbol( ) const;

Valore restituito

Stringa contenente il simbolo di valuta.

Note

La funzione membro restituisce do_curr_symbol.

Esempio

// moneypunct_curr_symbol.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
#include <sstream>
using namespace std;
int main( )
{
   locale loc( "german_germany" );

   const moneypunct < char, true > &mpunct = use_facet < moneypunct < char, true > >(loc);
   cout << loc.name( ) << " international currency symbol "<<  mpunct.curr_symbol( ) << endl;

   const moneypunct < char, false> &mpunct2 = use_facet < moneypunct < char, false> >(loc);
   cout << loc.name( ) << " domestic currency symbol "<<  mpunct2.curr_symbol( ) << endl;
};

Esempio di output

Se si esegue Windows 2000 o versioni precedenti, verrà visualizzato questo restituite:

German_Germany.1252 international currency symbol DEM
German_Germany.1252 domestic currency symbol DM

Se si esegue Windows XP, verrà visualizzato questo restituite:

German_Germany.1252 international currency symbol EUR
German_Germany.1252 domestic currency symbol 

Si presume che non siano state modificate le impostazioni relative alla valuta predefinite.

Requisiti

intestazione: <locale>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

moneypunct Class