rewind
rewind - 必应词典
- v . 1. 重新卷绕
- n . 1. 重卷
|
例句:
Also
,
switching
the
video
stream
to
the
Apple
TV
can
take
a
few
seconds
,
during
which the
video
keeps
playing
…
此外
,
把
视频
切换
到
Apple
TV
的
过程
需要
花
几
秒钟
,
在此
期间
视频
还
会
继续
播放
,
因此
你
往往
需要
在
切换
成功
后
再
…
|
函数名: rewind
功 能: 将文件内部的位置指针重新指向一个流(数据流/文件)的开头
注意:不是文件指针而是文件内部的位置指针,随着对文件的读写文件的位置指针(指向当前读写字节)向后移动。而文件指针是指向整个文件,如果不重新赋值文件指针不会改变。
用 法: void rewind(FILE *stream);
头文件:
stdio.h
返回值:无
英文解释: A statement such as
rewind( cfptr );
causes a program's file position--which indicates the number of the next byte in the file to be read or written-- to be repositioned to the beginnning of the file pointed to by cfptr.
程序例:
#include <stdio.h>
#include <dir.h>
int main(void)