rewind
rewind - 必应词典
rewind [ˌriˈwaɪnd]
词典释义:
- v. 1. 重新卷绕
- n. 1. 重卷
网络释义:
1. 倒带 2. 发条 3. 退卷
常见搭配:
例句: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)