Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      Standard library header <print> (C++23)

      From cppreference.com
      <cpp‎ |header
       
       
      Standard library headers
       

      This header is part of theInput/Output library.

      Functions

      (C++23)
      prints tostdout or a file stream usingformatted representation of the arguments
      (function template)[edit]
      (C++23)
      same asstd::print except that each print is terminated by additional new line
      (function template)[edit]
      prints to Unicode capablestdout or a file stream usingtype-erased argument representation
      (function)[edit]
      prints tostdout or a file stream usingtype-erased argument representation
      (function)[edit]

      [edit]Synopsis

      namespace std{// print functionstemplate<class...Args>void print(format_string<Args...> fmt, Args&&...args);template<class...Args>void print(FILE* stream, format_string<Args...> fmt, Args&&...args); template<class...Args>void println(format_string<Args...> fmt, Args&&...args);void println();template<class...Args>void println(FILE* stream, format_string<Args...> fmt, Args&&...args);void println(FILE* stream); void vprint_unicode(string_view fmt, format_args args);void vprint_unicode(FILE* stream, string_view fmt, format_args args); void vprint_unicode_locking(FILE* stream, string_view fmt, format_args args); void vprint_nonunicode(string_view fmt, format_args args);void vprint_nonunicode(FILE* stream, string_view fmt, format_args args); void vprint_nonunicode_locking(FILE* stream, string_view fmt, format_args args);}

      [edit]References

      • C++23 standard (ISO/IEC 14882:2024):
      • 31.7.4 Header<print> synopsis [print.syn]
      • 31.7.10 Print functions [print.fun]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/header/print&oldid=163905"

      [8]ページ先頭

      ©2009-2025 Movatter.jp