numpunct::decimal_point
Zwraca element ustawień regionalnych jako separator dziesiętny.
CharType decimal_point( ) const;
Wartość zwracana
Element ustawień regionalnych jako separator dziesiętny.
Uwagi
Zwraca element członkowski funkcja do_decimal_point.
Przykład
// 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;
};
Wymagania
Nagłówek:<ustawień regionalnych>
Przestrzeń nazw: std