std::vprint_unicode, std::vprint_unicode_buffered
来自cppreference.com
在标头 <print> 定义
|
||
void vprint_unicode( std::FILE* stream, std::string_view fmt, std::format_args args ); |
(2) | (C++23 起) |
void vprint_unicode_buffered( std::FILE* stream, std::string_view fmt, std::format_args args ); |
(3) | (C++23 起) |
void vprint_unicode_buffered( std::string_view fmt, std::format_args args ); |
(1) | (C++23 起) |
根据格式字符串 fmt 格式化 args,并将结果写入输出流。
1) 按顺序执行以下操作:
- 锁定 stream。
- 以 out 表示由 args 提供的格式化实参在按 fmt 指定的格式说明格式化后的字符表示。
- 将 out 写入 stream:
- 如果 stream 代表有能力显示 Unicode 的终端,那么冲洗 stream 并使用原生 Unicode API 将 out 写入该终端。
- 否则,将 out 按原样写入 stream。
在函数退出时会无条件解锁 stream。
如果满足以下任意条件,那么行为未定义:
- stream 不是指向输出 C 流的有效指针。
- 在使用原生 Unicode API 的情况下,out 包含了无效 Unicode 代码单元。
2) 等价于 std::string out = std::vformat(fmt, args);
std::vprint_unicode(stream, "{}", std::make_format_args(out));。
std::vprint_unicode(stream, "{}", std::make_format_args(out));。
3) 等价于 std::vprint_unicode_buffered(stdout, fmt, args)。
参数
stream | - | 要写人的输出文件流 | ||||||||||||||||||||||||||||||||||||||||||||||
fmt | - |
每个替换域拥有如下格式:
1) 没有格式说明的替换域
2) 有格式说明的替换域
| ||||||||||||||||||||||||||||||||||||||||||||||
args | - | 要格式化的实参 |
异常
- 内存分配失败时抛出 std::bad_alloc。
- 当向流写入失败时抛出 std::system_error。
- 传播由其所使用的格式化器所抛出的任何异常,比如 std::format_error。
注解
C++ 标准鼓励实现厂商在 out 包含无效 Unicode 代码单元时给出诊断消息。
POSIX 上,当表达式 isatty(fileno(stream)) != 0 为真时流代表终端(参见 isatty
和 fileno
的 POSIX 文档)。
Windows 上,当表达式 GetConsoleMode(_get_osfhandle(_fileno(stream))) 返回非零时流代表终端(参见 GetConsoleMode
、_get_osfhandle
和 _fileno
的 Windows 文档)。Windows 的原生 Unicode API 为 WriteConsoleW
。
如果调用原生 Unicode API 需要进行转码,则无效代码单元均被替换为 U+FFFD
REPLACEMENT CHARACTER(参见《Unicode 标准,版本 14.0 - 核心规范》,章节 3.9)。
功能特性测试宏 | 值 | 标准 | 功能特性 |
---|---|---|---|
__cpp_lib_print |
202207L | (C++23) | 格式化输出 |
202403L | (C++26) (DR23) |
可锁定流的格式化输出 | |
202406L | (C++26) (DR23) |
为更多可格式化类型启用不锁定格式化器优化 | |
__cpp_lib_format |
202207L | (C++23) | 暴露 std::basic_format_string |
示例
本节未完成 原因:暂无示例 |
参阅
使用类型擦除的参数表示,打印到 stdout 或文件流 (函数) | |
(C++23) |
使用类型擦除进行各实参的格式化表示的知 Unicode 输出 (函数) |
(C++23) |
将参数的格式化表达输出到 stdout 或文件缓冲区 (函数模板) |
(C++20) |
在新字符串中存储参数的格式化表示 (函数模板) |
外部链接
1. | Unicode |
2. | Unicode 标准,版本 14.0 - 核心规范 |