std::ftell
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
long ftell( std::FILE* stream ); |
||
返回的当前值的文件中的位置指示器的文件流
stream
.原文:
Returns the current value of the file position indicator for the file stream
stream
.如果流是在二进制模式,通过这个函数得到的值是从一开始的文件的字节数.
原文:
If the stream is open in binary mode, the value obtained by this function is the number of bytes from the beginning of the file.
如果流是在文本模式下,这个函数返回的值是不确定的,并且是唯一有意义的输入std::fseek
原文:
If the stream is open in text mode, the value returned by this function is unspecified and is only meaningful as the input to std::fseek
目录 |
[编辑] 参数
stream | - | 文件流进行检查
|
[编辑] 返回值
文件的位置指示器,成功或-1L如果发生故障。此外,还设置errno,失败.
原文:
File position indicator on success or -1L if failure occurs. Also sets errno on failure.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
获取文件位置指示器 (函数) | |
在一个文件中的文件位置指示符移动到特定的位置 原文: moves the file position indicator to a specific location in a file (函数) | |
在一个文件中的文件位置指示符移动到特定的位置 原文: moves the file position indicator to a specific location in a file (函数) | |
C documentation for ftell
|