Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::wprintf,std::fwprintf,std::swprintf

      From cppreference.com
      <cpp‎ |io‎ |c
       
       
       
       
      Defined in header<cwchar>
      int wprintf(constwchar_t* format, ...);
      (1)
      int fwprintf(std::FILE* stream,constwchar_t* format, ...);
      (2)
      int swprintf(wchar_t* buffer,std::size_t size,constwchar_t* format, ...);
      (3)

      Loads the data from the given locations, converts them to wide string equivalents and writes the results to a variety of sinks.

      1) Writes the results tostdout.
      2) Writes the results to a file streamstream.
      3) Writes the results to a wide stringbuffer. At mostsize-1 wide characters are written followed by null wide character.

      Contents

      [edit]Parameters

      stream - output file stream to write to
      buffer - pointer to a wide character string to write to
      size - up tosize-1 characters may be written, plus the null terminator
      format - pointer to a null-terminated wide string specifying how to interpret the data
      ... - arguments specifying data to print. If any argument afterdefault conversions is not the type expected by the corresponding conversion specifier, or if there are fewer arguments than required byformat, the behavior is undefined. If there are more arguments than required byformat, the extraneous arguments are evaluated and ignored

      Theformat string consists of ordinary wide characters (except%), which are copied unchanged into the output stream, and conversion specifications. Each conversion specification has the following format:

      • introductory% character.
      • (optional) one or more flags that modify the behavior of the conversion:
      • -: the result of the conversion is left-justified within the field (by default it is right-justified).
      • +: the sign of signed conversions is always prepended to the result of the conversion (by default the result is preceded by minus only when it is negative).
      • space: if the result of a signed conversion does not start with a sign character, or is empty, space is prepended to the result. It is ignored if+ flag is present.
      • #:alternative form of the conversion is performed. See the table below for exact effects otherwise the behavior is undefined.
      • 0: for integer and floating-point number conversions, leading zeros are used to pad the field instead ofspace characters. For integer numbers it is ignored if the precision is explicitly specified. For other conversions using this flag results in undefined behavior. It is ignored if- flag is present.
      • (optional) integer value or* that specifies minimum field width. The result is padded withspace characters (by default), if required, on the left when right-justified, or on the right if left-justified. In the case when* is used, the width is specified by an additional argument of typeint, which appears before the argument to be converted and the argument supplying precision if one is supplied. If the value of the argument is negative, it results with the- flag specified and positive field width (Note: This is the minimum width: The value is never truncated.).
      • (optional). followed by integer number or*, or neither that specifiesprecision of the conversion. In the case when* is used, theprecision is specified by an additional argument of typeint, which appears before the argument to be converted, but after the argument supplying minimum field width if one is supplied. If the value of this argument is negative, it is ignored. If neither a number nor* is used, the precision is taken as zero. See the table below for exact effects ofprecision.
      • (optional)length modifier that specifies the size of the argument (in combination with the conversion format specifier, it specifies the type of the corresponding argument).
      • conversion format specifier.

      The following format specifiers are available:

      Conversion
      Specifier
      ExplanationExpected
      Argument Type
      Length Modifier→hhhnonellljztL
      Only available since C++11→YesYesYesYesYes
      %Writes literal%. The full conversion specification must be%%.N/AN/AN/AN/AN/AN/AN/AN/AN/A
      c

      Writes asingle character.

      • The argument is first converted towchar_t as if by callingstd::btowc.
      • If thel modifier is used, thestd::wint_t argument is first converted towchar_t.
      N/AN/A
      int
      std::wint_t
      N/AN/AN/AN/AN/A
      s

      Writes acharacter string.

      • The argument must be a pointer to the initial element of a character array containing a multibyte character sequence beginning in the initial shift state, which is converted to wide character array as if by a call tostd::mbrtowc with zero-initialized conversion state.
      • Precision specifies the maximum number of wide characters to be written. IfPrecision is not specified, writes every wide characters up to and not including the first null terminator.
      • If thel specifier is used, the argument must be a pointer to the initial element of an array ofwchar_t.
      N/AN/A
      char*
      wchar_t*
      N/AN/AN/AN/AN/A
      d
      i

      Converts asigned integer into decimal representation[-]dddd.

      • Precision specifies the minimum number of digits to appear. The default precision is1.
      • If both the converted value and the precision are0 the conversion results in no characters.
      • For thez modifier, the expected argument type is the signed version ofstd::size_t.
      signedchar
      short
      int
      long
      longlong
      N/A
      o

      Converts anunsigned integer into octal representationoooo.

      • Precision specifies the minimum number of digits to appear. The default precision is1.
      • If both the converted value and the precision are0 the conversion results in no characters.
      • In thealternative implementation precision is increased if necessary, to write one leading zero. In that case if both the converted value and the precision are0, single0 is written.
      unsignedchar
      unsignedshort
      unsignedint
      unsignedlong
      unsignedlonglong
      unsigned version ofstd::ptrdiff_t
      N/A
      x
      X

      Converts anunsigned integer into hexadecimal representationhhhh.

      • For thex conversion lettersabcdef are used.
      • For theX conversion lettersABCDEF are used.
      • Precision specifies the minimum number of digits to appear. The default precision is1.
      • If both the converted value and the precision are0 the conversion results in no characters.
      • In thealternative implementation0x or0X is prefixed to results if the converted value is nonzero.
      N/A
      u

      Converts anunsigned integer into decimal representationdddd.

      • Precision specifies the minimum number of digits to appear.
      • The default precision is1.
      • If both the converted value and the precision are0 the conversion results in no characters.
      N/A
      f
      F (C++11)

      Convertsfloating-point number to the decimal notation in the style[-]ddd.ddd.

      • Precision specifies the exact number of digits to appear after the decimal point character.
      • The default precision is6.
      • In thealternative implementation decimal point character is written even if no digits follow it.
      • For infinity and not-a-number conversion style seenotes.
      N/AN/A
      double
      double(C++11)
      N/AN/AN/AN/A
      longdouble
      e
      E

      Convertsfloating-point number to the decimal exponent notation.

      • For thee conversion style[-]d.ddd e±dd is used.
      • For theE conversion style[-]d.ddd E±dd is used.
      • The exponent contains at least two digits, more digits are used only if necessary.
      • If the value is0, the exponent is also0.
      • Precision specifies the exact number of digits to appear after the decimal point character.
      • The default precision is6.
      • In thealternative implementation decimal point character is written even if no digits follow it.
      • For infinity and not-a-number conversion style seenotes.
      N/AN/AN/AN/AN/AN/A
      a
      A

      (C++11)

      Convertsfloating-point number to the hexadecimal exponent notation.

      • For thea conversion style[-] 0xh.hhh p±d is used.
      • For theA conversion style[-] 0Xh.hhh P±d is used.
      • The first hexadecimal digit is not0 if the argument is a normalized floating-point value.
      • If the value is0, the exponent is also0.
      • Precision specifies the exact number of digits to appear after the hexadecimal point character.
      • The default precision is sufficient for exact representation of the value.
      • In thealternative implementation decimal point character is written even if no digits follow it.
      • For infinity and not-a-number conversion style seenotes.
      N/AN/AN/AN/AN/AN/A
      g
      G

      Convertsfloating-point number to decimal or decimal exponent notation depending on the value and theprecision.

      • For theg conversion style conversion with stylee orf will be performed.
      • For theG conversion style conversion with styleE orf(until C++11)F(since C++11) will be performed.
      • LetP equal the precision if nonzero,6 if the precision is not specified, or1 if the precision is0. Then, if a conversion with styleE would have an exponent ofX:
        • IfP > X ≥ −4, the conversion is with stylef orF(since C++11) and precisionP − 1 − X.
        • Otherwise, the conversion is with stylee orE and precisionP − 1.
      • Unlessalternative representation is requested the trailing zeros are removed, also the decimal point character is removed if no fractional part is left.
      • For infinity and not-a-number conversion style seenotes.
      N/AN/AN/AN/AN/AN/A
      n

      Returns thenumber of characters written so far by this call to the function.

      • The result iswritten to the value pointed to by the argument.
      • The specification may not contain anyflag,field width, orprecision.
      • For thez modifier, the expected argument type isS*, whereS is the signed version ofstd::size_t.
      signedchar*
      short*
      int*
      long*
      longlong*
      N/A
      p

      Writes an implementation defined character sequence defining apointer.

      N/AN/A
      void*
      N/AN/AN/AN/AN/AN/A
      Notes

      The floating-point conversion functions convert infinity toinf orinfinity. Which one is used is implementation defined.

      Not-a-number is converted tonan ornan(char_sequence). Which one is used is implementation defined.

      The conversionsF,E,G,A outputINF,INFINITY,NAN instead.

      The conversion specifier used to printchar,unsignedchar,signedchar,short, andunsignedshort expects promoted types ofdefault argument promotions, but before printing its value will be converted tochar,unsignedchar,signedchar,short, andunsignedshort. It is safe to pass values of these types because of the promotion that takes place when a variadic function is called.

      The correct conversion specifications for the fixed-width character types (std::int8_t, etc) are defined in the header<cinttypes> (althoughPRIdMAX,PRIuMAX, etc is synonymous with%jd,%ju, etc).

      The memory-writing conversion specifier%n is a common target of security exploits where format strings depend on user input.

      There is asequence point after the action of each conversion specifier; this permits storing multiple%n results in the same variable or, as an edge case, printing a string modified by an earlier%n within the same call.

      If a conversion specification is invalid, the behavior is undefined.

      [edit]Return value

      1,2) Number of wide characters written if successful or negative value if an error occurred.
      3) Number of wide characters written (not counting the terminating null wide character) if successful or negative value if an encoding error occurred or if the number of characters to be generated was equal or greater thansize (including whensize is zero).

      [edit]Notes

      While narrow strings providestd::snprintf, which makes it possible to determine the required output buffer size, there is no equivalent for wide strings, and in order to determine the buffer size, the program may need to callstd::swprintf, check the result value, and reallocate a larger buffer, trying again until successful.

      [edit]Example

      Run this code
      #include <clocale>#include <cwchar>#include <iostream>#include <locale> int main(){char narrow_str[]="z\u00df\u6c34\U0001f34c";// or "zß水🍌";// or "\x7a\xc3\x9f\xe6\xb0\xb4\xf0\x9f\x8d\x8c";wchar_t warr[29];// the expected string is 28 characters plus 1 null terminatorstd::setlocale(LC_ALL,"en_US.utf8");     std::swprintf(warr, sizeof warr/sizeof*warr,                  L"Converted from UTF-8: '%s'", narrow_str); std::wcout.imbue(std::locale("en_US.utf8"));std::wcout<< warr<<'\n';}

      Output:

      Converted from UTF-8: 'zß水🍌'

      [edit]See also

      prints formatted output tostdout, a file stream or a buffer
      (function)[edit]
      prints formatted wide character output tostdout, a file stream
      or a buffer using variable argument list
      (function)[edit]
      writes a wide string to a file stream
      (function)[edit]
      C documentation forwprintf,fwprintf,swprintf
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/io/c/fwprintf&oldid=158706"

      [8]ページ先頭

      ©2009-2025 Movatter.jp