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