다음을 통해 공유


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

참고 항목

참조

numpunct Class