numpunct::grouping
傳回判斷數值範圍的一個地區設定專用規則在任何小數點的左側進行分組。
string grouping( ) const;
傳回值
判斷數值範圍的一個地區設定專用規則在任何小數點的左側進行分組。
備註
成員函式傳回 do_grouping。
範例
// numpunct_grouping.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 );
for (unsigned int i = 0; i < npunct.grouping( ).length( ); i++)
{
cout << loc.name( ) << " international grouping:\n the "
<< i <<"th group to the left of the radix character "
<< "is of size " << (int)(npunct.grouping ( )[i])
<< endl;
}
}
需求
標題: <locale>
命名空間: std