名前空間
変種
操作

標準ライブラリヘッダ <iomanip>

From cppreference.com
 
 
標準ライブラリヘッダー
 

このヘッダは入出力ライブラリの一部です。

関数

指定されたios_baseフラグをクリアする
(関数) [編集]
指定されたios_baseフラグを設定する
(関数) [編集]
整数I/Oで使用する基数を変更する
(関数) [編集]
埋め文字を変更する
(関数テンプレート) [編集]
浮動小数点数の精度を変更する
(関数) [編集]
次の入出力フィールドの幅を変更する
(関数) [編集]
(C++11)
通貨の値を構文解析する
(関数テンプレート) [編集]
(C++11)
通貨の値をフォーマットして出力する
(関数テンプレート) [編集]
(C++11)
指定されたフォーマットの日付/時刻の値を構文解析する
(関数テンプレート) [編集]
(C++11)
指定されたフォーマットに従って日付/時刻の値をフォーマットして出力する
(関数テンプレート) [編集]
(C++14)
埋め込みスペースを含む引用符付き文字列を挿入および抽出します。
(関数テンプレート) [編集]

[編集] 概要

namespace std {
  /*unspecified*/ resetiosflags(ios_base::fmtflags mask);
  /*unspecified*/ setiosflags  (ios_base::fmtflags mask);
  /*unspecified*/ setbase(int base);
  template<class CharT> /*unspecified*/ setfill(CharT c);
  /*unspecified*/ setprecision(int n);
  /*unspecified*/ setw(int n);
  template<class MoneyT> /*unspecified*/ get_money(MoneyT& mon, bool intl = false);
  template<class MoneyT> /*unspecified*/ put_money(const MoneyT& mon, bool intl = false);
  template<class CharT> /*unspecified*/ get_time(tm* tmb, const CharT* fmt);
  template<class CharT> /*unspecified*/ put_time(const tm* tmb, const CharT* fmt);
 
  template<class CharT>
    /*unspecified*/ quoted(const CharT* s, CharT delim = CharT('"'),
                           CharT escape = CharT('\\'));
 
  template<class CharT, class Traits, class Allocator>
    /*unspecified*/ quoted(const basic_string<CharT, Traits, Allocator>& s,
               CharT delim = CharT('"'), CharT escape = CharT('\\'));
 
  template<class CharT, class Traits, class Allocator>
    /*unspecified*/ quoted(basic_string<CharT, Traits, Allocator>& s,
               CharT delim = CharT('"'), CharT escape = CharT('\\'));
 
  template<class CharT, class Traits>
    /*unspecified*/ quoted(basic_string_view<CharT, Traits> s,
               CharT delim = CharT('"'), CharT escape = CharT('\\'));
}
English 日本語 中文(简体) 中文(繁體)