numpunct::decimal_point
Gibt ein gebietsschemaspezifisches Element zurück, um als Dezimaltrennzeichen zu verwenden.
CharType decimal_point( ) const;
Rückgabewert
Ein gebietsschemaspezifisches als Dezimaltrennzeichen zu verwenden, Element.
Hinweise
Die Memberfunktion gibt do_decimal_point zurück.
Beispiel
// numpunct_decimal_point.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