linux系统API,c,c++的标准I/O和文件I/O

2020-07-19  本文已影响0人  FakeCSer爱去网吧

linux系统API


C


C++

文件流对象定义fstream f;->打开文件f.open()->读/写->文件关闭f.close()

fileObject.seekg( n );
 
// 把文件的读指针从 fileObject 当前位置向后移 n 个字节
fileObject.seekg( n, ios::cur );
 
// 把文件的读指针从 fileObject 末尾往回移 n 个字节
fileObject.seekg( n, ios::end );
 
// 定位到 fileObject 的末尾
fileObject.seekg( 0, ios::end );
上一篇下一篇

猜你喜欢

热点阅读