fread是什么意思,fread的意思翻译、用法、同义词、例句
常用词典
n. 从文件中读;从文件读二进制数据
n. (Fread)人名;(英)弗里德
例句
This part of the program is also conventional PHP - in this case, with fread.
程序的这一部分也符合常规php——在本例中,使用fread。
The fgets, fgetss, fread, fscanf, and fclose functions also return False on error.
fscanf 和 fclose 函数在出错时也返回 False。
Note that no matter what number you specify, fread will not read more than 8,192 bytes (8 KB).
不管指定多少字节,fread都不会读取超过8,192个字节(8 KB)。
It's not unusual to run across networking programs that fread in a while in such a way that CPU usage zooms to 100 percent.
经常会遇到这样一些连网程序,以CPU使用率急速上升至100%的方式在while中使用fread。
The fread function serves a slightly different purpose from fgets: It is intended to read from binary files (that is, files that don't consist primarily of human-readable text).
fread 函数与 fgets 的处理目标略有不同:它趋于从二进制文件(即,并非主要包含人类可阅读的文本的文件)中读取信息。
网络扩展资料
fread(/'friːd/)是一个C标准库函数,用于从文件中读取二进制数据块。
词性
动词
定义
从文件中读取二进制数据块。
发音
/'friːd/
用法
size_t fread(void *ptr, size_t size, size_t count, FILE *stream);
ptr
:指向要读取数据的指针。size
:每个数据块的字节数。count
:要读取的数据块数。stream
:指向文件对象的指针。
解释
fread函数从文件中读取二进制数据块,并将其存储在ptr指向的内存位置中。函数返回实际读取的数据块数,如果读取失败或到达文件尾部,则返回。
近义词
- read
- fread_s
反义词
- fwrite