| | |
fmtflags setf( fmtflags flags ); | (1) | |
| | |
fmtflags setf( fmtflags flags, fmtflags mask ); | (2) | |
| | |
指定した設定に書式化フラグを設定します。.
Original:
Sets the formatting flags to specified settings.
The text has been machine-translated via
Google Translate.
You can help to correct and verify the translation. Click
here for instructions.
1)
フラグに書式化フラグを設定します
Original:
Sets the formatting flags to flags
The text has been machine-translated via
Google Translate.
You can help to correct and verify the translation. Click
here for instructions.
2)
mask
下の書式化フラグをクリアし、
flags
で定めるものにクリアフラグを設定します。
(flags & mask)は内部書式化フラグの状態を定義するところ、基本的に以下の操作が実行され
fl
.
Original:
Clears the formatting flags under mask
, and sets the cleared flags to those specified by flags
. Essentially the following operation is performed (flags & mask) where fl
defines the state of internal formatting flags.
The text has been machine-translated via
Google Translate.
You can help to correct and verify the translation. Click
here for instructions.
[編集]パラメータ
flags, mask | - | 新しい書式設定。 mask 変更することができますどのフラグが定義され、 flags は、(他のものはクリアされます)に設定する必要があり、変更されるそれらのどのフラグが定義されています。両方のパラメータは、以下の定数を組み合わせて指定できます。 | 定数 Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | Explanation | | dec | 整数I / O用に10進法を使用 Original: use decimal base for integer I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | oct | 整数I / Oのためのオクタルベースを使用 Original: use octal base for integer I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | hex | 整数I / Oの16進数のベースを使用 Original: use hexadecimal base for integer I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | basefield | dec|oct|hex|0。操作をマスキングするのに便利です Original: dec|oct|hex|0. Useful for masking operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | left | 左側の調整(右に充てん文字が追加されます) Original: left adjustment (adds fill characters to the right) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | right | 右の調整(左に塗りつぶし文字が追加されます) Original: right adjustment (adds fill characters to the left) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | internal | 内部調整(内部の指定したポイントに塗りつぶし文字が追加されます) Original: internal adjustment (adds fill characters to the internal designated point) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | adjustfield | left|right|internal。操作をマスキングするのに便利です Original: left|right|internal. Useful for masking operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | scientific | 固定と組み合わせた場合、科学的表記法、または16進表記を使用して、浮動小数点型を生成します Original: generate floating point types using scientific notation, or hex notation if combined with fixed The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | fixed | 科学と組み合わせた場合、固定表記法、または16進表記を使用して、浮動小数点型を生成します Original: generate floating point types using fixed notation, or hex notation if combined with scientific The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | floatfield | scientific|fixed|(scientific|fixed)|0。操作をマスキングするのに便利です Original: scientific|fixed|(scientific|fixed)|0. Useful for masking operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | boolalpha | 挿入し、文字フォーマットで boolタイプを抽出 Original: insert and extract bool type in alphanumeric format The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | showbase | 整数出力の基数を示すプリフィックスを生成し、金銭的なI / Oの通貨指標を必要と Original: generate a prefix indicating the numeric base for integer output, require the currency indicator in monetary I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | showpoint | 無条件に浮動小数点数出力の小数点文字を生成します Original: generate a decimal-point character unconditionally for floating-point number output The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | showpos | 負でない数値出力用 +文字を生成します Original: generate a + character for non-negative numeric output The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | skipws | 特定の入力操作の前に先頭の空白を読み飛ばします Original: skip leading whitespace before certain input operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | unitbuf | 各出力動作後の出力をフラッシュします Original: flush the output after each output operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | uppercase | 特定の出力の出力操作でそれらのuppercase equivalentsで特定小文字を交換してください Original: replace certain lowercase letters with their uppercase equivalents in certain output output operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Original: new formatting setting. mask defines which flags can be altered, flags defines which flags of those to be altered should be set (others will be cleared). Both parameters can be a combination of the following constants: | 定数 Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | Explanation | | dec | 整数I / O用に10進法を使用 Original: use decimal base for integer I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | oct | 整数I / Oのためのオクタルベースを使用 Original: use octal base for integer I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | hex | 整数I / Oの16進数のベースを使用 Original: use hexadecimal base for integer I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | basefield | dec|oct|hex|0。操作をマスキングするのに便利です Original: dec|oct|hex|0. Useful for masking operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | left | 左側の調整(右に充てん文字が追加されます) Original: left adjustment (adds fill characters to the right) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | right | 右の調整(左に塗りつぶし文字が追加されます) Original: right adjustment (adds fill characters to the left) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | internal | 内部調整(内部の指定したポイントに塗りつぶし文字が追加されます) Original: internal adjustment (adds fill characters to the internal designated point) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | adjustfield | left|right|internal。操作をマスキングするのに便利です Original: left|right|internal. Useful for masking operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | scientific | 固定と組み合わせた場合、科学的表記法、または16進表記を使用して、浮動小数点型を生成します Original: generate floating point types using scientific notation, or hex notation if combined with fixed The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | fixed | 科学と組み合わせた場合、固定表記法、または16進表記を使用して、浮動小数点型を生成します Original: generate floating point types using fixed notation, or hex notation if combined with scientific The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | floatfield | scientific|fixed|(scientific|fixed)|0。操作をマスキングするのに便利です Original: scientific|fixed|(scientific|fixed)|0. Useful for masking operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | boolalpha | 挿入し、文字フォーマットで boolタイプを抽出 Original: insert and extract bool type in alphanumeric format The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | showbase | 整数出力の基数を示すプリフィックスを生成し、金銭的なI / Oの通貨指標を必要と Original: generate a prefix indicating the numeric base for integer output, require the currency indicator in monetary I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | showpoint | 無条件に浮動小数点数出力の小数点文字を生成します Original: generate a decimal-point character unconditionally for floating-point number output The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | showpos | 負でない数値出力用 +文字を生成します Original: generate a + character for non-negative numeric output The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | skipws | 特定の入力操作の前に先頭の空白を読み飛ばします Original: skip leading whitespace before certain input operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | unitbuf | 各出力動作後の出力をフラッシュします Original: flush the output after each output operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | | uppercase | 特定の出力の出力操作でそれらのuppercase equivalentsで特定小文字を交換してください Original: replace certain lowercase letters with their uppercase equivalents in certain output output operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集]値を返します
関数の呼び出しの前に書式化フラグ
Original:
the formatting flags before the call to the function
The text has been machine-translated via
Google Translate.
You can help to correct and verify the translation. Click
here for instructions.
|
| 書式フラグを管理します Original: manages format flags The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数)[edit] |
|
| clears specific format flag (パブリックメンバ関数)[edit] |