moneypunct::curr_symbol
Gibt gebietsschemaspezifischen einer Sequenz von Elementen zurück, um als Währungssymbol zu verwenden.
string_type curr_symbol( ) const;
Rückgabewert
Eine Zeichenfolge, die das Währungssymbol enthält.
Hinweise
Die Memberfunktion gibt do_curr_symbol zurück.
Beispiel
// 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;
};
Beispielausgabe
Wenn Sie Windows 2000 oder früher ausführen, rufen Sie Ausgaben dieses ab:
German_Germany.1252 international currency symbol DEM
German_Germany.1252 domestic currency symbol DM
Wenn Sie Windows XP ausführen, rufen Sie Ausgaben dieses ab:
German_Germany.1252 international currency symbol EUR
German_Germany.1252 domestic currency symbol
Dabei wird davon ausgegangen, dass Sie nicht die Standardwährungseinstellungen geändert haben.
Anforderungen
Gebietsschema Header: <>
Namespace: std