moneypunct::neg_format
음수와 출력 서식 지정에 대 한 로캘별 규칙을 반환 합니다.
pattern neg_format( ) const;
반환 값
음수와 출력 서식 지정에 대 한 로캘별 규칙입니다.
설명
멤버 함수를 반환 합니다. do_neg_format.
예제
// moneypunct_neg_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 negative number format: "
<< mpunct.neg_format( ).field[0]
<< mpunct.neg_format( ).field[1]
<< mpunct.neg_format( ).field[2]
<< mpunct.neg_format( ).field[3] << endl;
const moneypunct <char, false> &mpunct2 =
use_facet <moneypunct <char, false> >(loc);
cout << loc.name( ) << " domestic negative number format: "
<< mpunct2.neg_format( ).field[0]
<< mpunct2.neg_format( ).field[1]
<< mpunct2.neg_format( ).field[2]
<< mpunct2.neg_format( ).field[3] << endl;
}
샘플 출력
German_Germany.1252 international negative number format: $+vx
German_Germany.1252 domestic negative number format: +v $
요구 사항
헤더: <locale>
네임 스페이스: std