std::vwscanf, std::vfwscanf, std::vswscanf
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cwchar> 中定义
|
||
int vwscanf( const wchar_t* format, va_list vlist ); |
(1) | (C++11 起) |
int vfwscanf( FILE *stream, const wchar_t* format, va_list vlist ); |
(2) | (C++11 起) |
int vswscanf( const wchar_t* buffer, const wchar_t* format, va_list vlist ); |
(3) | (C++11 起) |
从各种来源中读取数据,解释它根据
format
vlist
所定义的位置,并将结果存储到.原文:
Reads data from the a variety of sources, interprets it according to
format
and stores the results into locations defined by vlist
.1)
从stdin读取数据
2)
读取文件中的数据流
stream
原文:
Reads the data from file stream
stream
3)
读取的数据从NULL结尾的宽字符串
buffer
原文:
Reads the data from null-terminated wide string
buffer
目录 |
[编辑] 参数
stream | - | 输入文件流中读取
| ||||
buffer | - | 指针指向一个空结尾的宽字符串读取
原文: pointer to a null-terminated wide string to read from | ||||
format | - | 指定如何读取输入一个空结尾的宽字符串的指针指向。
原文: pointer to a null-terminated wide string specifying how to read the input.
| ||||
vlist | - | 可变参数列表,其中包含接收的参数
原文: variable argument list containing the receiving arguments |
[编辑] 返回值
成功读取的参数个数,或EOF如果发生故障.
原文:
Number of arguments successfully read, or EOF if failure occurs.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
stdin,文件流或缓冲区读取格式的宽字符输入 原文: reads formatted wide character input from stdin, a file stream or a buffer (函数) | |
C documentation for vwscanf, vfwscanf, vswscanf
|