标签: c++ file seekg
我遇到以下问题:
我的程序会打开一个文件并将其所有内容复制到矢量中。之后,我需要回到文件的开头并以另一个顺序重写内容。
我尝试使用clear和seekp,但它没有用。有人可以帮帮我吗?
clear
seekp
这是代码:
first_index是我正在使用的文件:
first_index
first_index.clear(); first_index.seekp (0, ios_base::beg);