std::ios_base::fmtflags
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
typedef /*implementation defined*/ fmtflags; |
||
static constexpr fmtflags dec = /*implementation defined*/ static constexpr fmtflags oct = /*implementation defined*/ |
||
static constexpr fmtflags left = /*implementation defined*/ static constexpr fmtflags right = /*implementation defined*/ |
||
static constexpr fmtflags scientific = /*implementation defined*/ static constexpr fmtflags fixed = /*implementation defined*/ |
||
static constexpr fmtflags boolalpha = /*implementation defined*/ static constexpr fmtflags showbase = /*implementation defined*/ |
||
BitmaskType
で、以下の定数が定義されています BitmaskType
, the following constants are defined: You can help to correct and verify the translation. Click here for instructions.
定数
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. |
[編集] 例
This section is incomplete Reason: no example |
[編集] も参照してください
書式フラグを管理します 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. (パブリックメンバ関数) | |
特定の形式のフラグを設定します Original: sets specific format flag The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |
clears specific format flag (パブリックメンバ関数) | |
整数I / O用に使用されるベースを変更 Original: changes the base used 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. (関数) | |
埋め込み文字を変更します Original: changes the fill character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数テンプレート) | |
(C++11) (C++11) |
変更は、浮動小数点のI / O用に使用される書式 Original: changes formatting used for floating-point I/O The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
プレフィックスは基数を示すために使用されているかどうかを制御します Original: controls whether prefix is used to indicate numeric base The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
ブール値のテキストや数値表現の間で切り替わります Original: switches between textual and numeric representation of booleans The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
+ 記号は非負数で使用されるかどうかを制御しますOriginal: controls whether the + sign used with non-negative numbersThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
小数点が常に浮動小数点表現に含まれているかどうかを制御します Original: controls whether decimal point is always included in floating-point representation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
出力は各操作の後にフラッシュされるかどうかを制御します Original: controls whether output is flushed after each operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
先頭の空白かどうかのコントロールは、入力時にはスキップされます Original: controls whether leading whitespace is skipped on input The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
controls whether uppercase characters are used with some output formats (関数) |