次の方法で共有


moneypunct::pos_format

正数の出力を書式指定するためのロケール固有の規則を返します。

pattern pos_format( ) const;

戻り値

正数の出力を書式指定するためのロケール固有の規則。

解説

このメンバー関数は do_pos_formatを返します。

使用例

// moneypunct_pos_format.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
#include <sstream>

using namespace std;

int main() {
   locale loc( "german_germany" );

   const moneypunct <char, true> &mpunct = 
      use_facet <moneypunct <char, true> >(loc);
   cout << loc.name( ) << " international positive number format: "
        << mpunct.pos_format( ).field[0] 
        << mpunct.pos_format( ).field[1] 
        << mpunct.pos_format( ).field[2] 
        << mpunct.pos_format( ).field[3] << endl;

   const moneypunct <char, false> &mpunct2 = 
      use_facet <moneypunct <char, false> >(loc);
   cout << loc.name( ) << " domestic positive number format: "
        << mpunct2.pos_format( ).field[0] 
        << mpunct2.pos_format( ).field[1] 
        << mpunct2.pos_format( ).field[2] 
        << mpunct2.pos_format( ).field[3] << endl;
}

出力例

German_Germany.1252 international positive number format: $+vx
German_Germany.1252 domestic positive number format: +v $

必要条件

ヘッダー: <locale>

名前空間: std

参照

関連項目

moneypunct Class