新建 文本文档.txt

来自「C++课程设计」· 文本 代码 · 共 42 行

TXT
42
字号
sankt】:
istream::seekg
istream& seekg( streampos pos );

istream& seekg( streamoff off, ios::seek_dir dir );

Parameters

pos

The new position value; streampos is a typedef equivalent to long.

off

The new offset value; streamoff is a typedef equivalent to long.

dir

The seek direction. Must be one of the following enumerators: 

ios::beg   Seek from the beginning of the stream.


ios::cur   Seek from the current position in the stream.


ios::end   Seek from the end of the stream. 
Remarks

Changes the get pointer for the stream. Not all derived classes of istream need support positioning; it is most often used with file-based streams.


【roger_77】:
楼上说的很明白了.
返回的是文件流对象,也就是原来文件流本身那个对象,只是流的指针位置发生了改变.

【flylonginsky】:
还是不大明白....那我如何来应用它返回值呢

【discory】:
流对象的类型把,

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?