- print[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp23[meta cpp]
namespace std {
template <class... Args>
void print(format_string<Args...> fmt,
Args&&... args); // (1) C++23
template <class... Args>
void print(FILE* stream,
format_string<Args...> fmt,
Args&&... args); // (2) C++23
}
- format_string[link /reference/format/basic_format_string.md]
- FILE[link /reference/cstdio/file.md.nolink]
書式指定で出力する。
書式はstd::format()
関数のページを参照。
この関数は、std::printf()
関数ライクな書式指定で引数を文字列化して出力する。
- (1) : 標準出力に、書式指定で出力する
- (2) : 指定された
FILE
に、書式指定で出力する
この関数は、末尾に改行コードが付かないことに注意。改行コードを自動で付けたい場合は、std::println()
関数を使用すること。
std::ostream
から派生したクラスオブジェクトに対して出力したい場合は、<ostream>
ヘッダのstd::print()
関数を使用すること。
-
(1) : 以下と等価:
print(stdout, fmt, std::forward<Args>(args)...);
- stdout[link /reference/cstdio/stdout.md.nolink]
- std::forward[link /reference/utility/forward.md]
-
(2) :
-
C++23 :
- 通常の文字列リテラルがUTF-8エンコーディングされている場合、以下と等価:
vprint_unicode(stream, fmt.get(), make_format_args(std::forward<Args>(args)...));
- vprint_unicode[link vprint_unicode.md]
- fmt.get()[link /reference/format/format_string/get.md.nolink]
- make_format_args[link /reference/format/make_format_args.md]
- std::forward[link /reference/utility/forward.md]
- そうでなければ、以下と等価:
vprint_nonunicode(stream, fmt.get(), make_format_args(std::forward<Args>(args)...));
- vprint_nonunicode[link vprint_nonunicode.md]
- fmt.get()[link /reference/format/format_string/get.md.nolink]
- make_format_args[link /reference/format/make_format_args.md]
- std::forward[link /reference/utility/forward.md]
-
C++26 :
- 値として
(
enable_nonlocking_formatter_optimization
<
remove_cvref_t
<Args>> && ...)
をもつ変数locksafe
があるとして、 - 通常の文字列リテラルがUTF-8エンコーディングされている場合、以下と等価:
locksafe ? vprint_unicode(stream, fmt.get(), make_format_args(args...)) : vprint_unicode_buffered(stream, fmt.get(), make_format_args(args...));
- vprint_unicode[link vprint_unicode.md]
- vprint_unicode_buffered[link vprint_unicode_buffered.md]
- fmt.get()[link /reference/format/format_string/get.md.nolink]
- make_format_args[link /reference/format/make_format_args.md]
- そうでなければ、以下と等価:
locksafe ? vprint_nonunicode(stream, fmt.get(), make_format_args(args...)) : vprint_nonunicode_buffered(stream, fmt.get(), make_format_args(args...));
- vprint_nonunicode[link vprint_nonunicode.md]
- vprint_nonunicode_buffered[link vprint_nonunicode_buffered.md]
- fmt.get()[link /reference/format/format_string/get.md.nolink]
- make_format_args[link /reference/format/make_format_args.md]
- 値として
-
- LinuxやmacOSといった環境では、通常の
char
配列の文字列リテラルはUTF-8にエンコーディングされる - WindowsのVisual Studioにおいては、ソースコードと実行時文字集合をUTF-8にする
/utf-8
オプションを使用することで、通常のchar
配列の文字列リテラルがUTF-8にエンコーディングされる - 「通常の文字列リテラルがUTF-8エンコーディングされている場合」という仕様は、コードでは以下のように表現できる:
constexpr bool is_utf8() { const unsigned char micro[] = "\u00B5"; return sizeof(micro) == 3 && micro[0] == 0xC2 && micro[1] == 0xB5; } template <typename... Args> void print(string_view fmt, const Args&... args) { if (is_utf8()) vprint_unicode(fmt, make_format_args(args...)); else vprint_nonunicode(fmt, make_format_args(args...)); }
- vprint_unicode[link vprint_unicode.md]
- vprint_nonunicode[link vprint_nonunicode.md]
#include <print>
int main()
{
std::print("Hello {} World\n", 42);
// 出力先を指定
std::print(stdout, "Hello {} World\n", 42); // 標準出力に出力
std::print(stderr, "Hello {} World\n", 42); // 標準エラーに出力
}
- std::print[color ff0000]
Hello 42 World
Hello 42 World
Hello 42 World
import std;
#include <cstdio>
int main()
{
std::print("Hello {} World\n", 42);
// stdout / stderrはマクロとして定義される。
// モジュールはマクロをエクスポートしないので、
// stdout / stderrを使用する場合は<cstdio>をインクルードする必要がある
std::print(stdout, "Hello {} World\n", 42);
}
Hello 42 World
Hello 42 World
#include <print>
int main()
{
std::string fmt = "{}\n";
std::print(std::runtime_format(fmt), "Hello");
}
- std::runtime_format[link /reference/format/runtime_format.md]
Hello
- C++23
- Clang: 19 [mark verified]
- GCC: 14 [mark verified]
- ICC: ??
- Visual C++: 2022 Update 7 [mark verified]
- P2093R14 Formatted output
- P3107R5 Permit an efficient implementation of
std::print
- P3235R3
std::print
more types faster with less memory- C++26の上記2つの提案文書では、余分な動的メモリ確保をしないよう仕様が見直された