std::vwprintf, std::vfwprintf, std::vswprintf
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
int vwprintf( const wchar_t* format, va_list vlist ); |
(1) | |
int vfwprintf( FILE* stream, const wchar_t* format, va_list vlist ); |
(2) | |
int vswprintf( const wchar_t* buffer, const wchar_t* format, va_list vlist ); |
(3) | |
加载数据定义的位置,
vlist
,将其转换为等价的宽字符串,并将结果写入各种接收器.原文:
Loads the data from locations, defined by
vlist
,, converts them to wide string equivalents and writes the results to a variety of sinks.1)
将结果写入stdout.
2)
结果写入一个文件流
stream
.原文:
Writes the results to a file stream
stream
.3)
将结果写入一个宽字符串
buffer
.原文:
Writes the results to a wide string
buffer
.目录 |
[编辑] 参数
本章尚未完成 |
[编辑] 返回值
写,如果成功的或负的价值,如果发生错误的宽字符数.
原文:
Number of wide characters written if successful or negative value if an error occurred.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
打印格式化宽字符输出到stdout,文件流或缓冲区 原文: prints formatted wide character output to stdout, a file stream or a buffer (函数) | |
C documentation for vwprintf, vfwprintf, vswprintf
|