fread
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdio.h> 中定义
|
||
读取指定数目的对象数组中的
buffer
从给定的输入流stream
。对象是不以任何方式解释. 原文:
Reads specified number of objects in the array
buffer
from the given input stream stream
. Objects are not interpreted in any way. [编辑] 参数
buffer | - | 要读取数组中的第一个对象的对象的指针
原文: pointer to the first object object in the array to be read |
size | - | 每个对象的大小(以字节为单位)
|
count | - | 要读取的对象的数目
原文: the number of the objects to be read |
[编辑] 返回值
成功读取的对象的数目
[编辑] 另请参阅
stdin,文件流或缓冲区的读取格式的输入 原文: reads formatted input from stdin, a file stream or a buffer (函数) | |
得到一个字符串从一个文件流 原文: gets a character string from a file stream (函数) | |
写入到一个文件中 (函数) | |
C++ documentation for fread
|