numpunct::thousands_sep
Gibt ein gebietsschemaspezifisches Element zurück, um als Tausendertrennzeichen zu verwenden.
CharType thousands_sep( ) const;
Rückgabewert
Ein gebietsschemaspezifisches als Tausendertrennzeichen zu verwenden, Element.
Hinweise
Die Memberfunktion gibt do_thousands_sep zurück.
Beispiel
// numpunct_thou_sep.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
#include <sstream>
using namespace std;
int main( )
{
locale loc( "german_germany" );
const numpunct <char> &npunct =
use_facet < numpunct < char > >( loc );
cout << loc.name( ) << " decimal point "<<
npunct.decimal_point( ) << endl;
cout << loc.name( ) << " thousands separator "
<< npunct.thousands_sep( ) << endl;
};
Anforderungen
Header: <locale>
Namespace: std