wprintf, fwprintf, swprintf
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wchar.h> 中定义
|
||
int wprintf( const wchar_t* format, ... ); |
(1) | |
int fwprintf( FILE *stream, const wchar_t* format, ... ); |
(2) | |
int swprintf( char *buffer, const wchar_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)
将结果写入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,的文件stream 或使用可变参数列表的缓冲区 原文: prints formatted wide character output to stdout, a file stream or a buffer using variable argument list (函数) | |
宽字符串写入一个文件流 原文: writes a wide string to a file stream (函数) | |
C++ documentation for wprintf, fwprintf, swprintf
|