Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::ios_base::flags

      From cppreference.com
      <cpp‎ |io‎ |ios base
       
       
       
       
      fmtflags flags()const;
      (1)
      fmtflags flags( fmtflags flags);
      (2)

      Manages format flags.

      1) returns current formatting setting
      2) replaces current settings with given ones.

      Contents

      [edit]Parameters

      flags - new formatting setting. It can be a combination offormatting flags constants.


      [edit]Formatting flags
      Constant Explanation
      dec use decimal base for integer I/O: seestd::dec
      oct use octal base for integer I/O: seestd::oct
      hex use hexadecimal base for integer I/O: seestd::hex
      basefielddec| oct| hex. Useful for masking operations
      left left adjustment (adds fill characters to the right): seestd::left
      right right adjustment (adds fill characters to the left): seestd::right
      internal internal adjustment (adds fill characters to the internal designated point): seestd::internal
      adjustfieldleft| right| internal. Useful for masking operations
      scientific generate floating point types using scientific notation, or hex notation if combined withfixed: seestd::scientific
      fixed generate floating point types using fixed notation, or hex notation if combined withscientific: seestd::fixed
      floatfieldscientific| fixed. Useful for masking operations
      boolalpha insert and extractbool type in alphanumeric format: seestd::boolalpha
      showbase generate a prefix indicating the numeric base for integer output, require the currency indicator in monetary I/O: seestd::showbase
      showpoint generate a decimal-point character unconditionally for floating-point number output: seestd::showpoint
      showpos generate a+ character for non-negative numeric output: seestd::showpos
      skipws skip leading whitespace before certain input operations: seestd::skipws
      unitbuf flush the output after each output operation: seestd::unitbuf
      uppercase replace certain lowercase letters with their uppercase equivalents in certain output operations: seestd::uppercase

      [edit]Return value

      the formatting flags before the call to the function

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      sets specific format flag
      (public member function)[edit]
      clears specific format flag
      (public member function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/io/ios_base/flags&oldid=151072"

      [8]ページ先頭

      ©2009-2025 Movatter.jp