这是我写的代码片段:
我正在使用 turbo c ++ (因为我在印度学习); 我的问题写在评论中。
void Sort()
{
ofstream Change("temp.dat",ios::binary);
ifstream RData("Student.dat",ios::in|ios::binary);
Student S[1000];
int q=0;
while(RData.read((char*)&S[q],sizeof(Student)))
q++;
int w=0;
Student temp;
for(int e=0;e<q-w;++e)
for(w=0;w+1<q;++w)
if(strcmp(S[w+1].accnm(),S[w].accnm())<0)
{
temp=S[w+1];
S[w+1]=S[w];
S[w]=temp;
}
w=0;
while(!Change.eof()&&w<q)
{
Change.write((char*)&S[w],sizeof(Student));
w++;
}
cout<<"\nSorted";
cout<<"\nWould you like to add a record to the sorted records\nsuch that the records remain sorted?(y/n)(case sensitive)\n";
if(getche()=='y')
{
e=0;
Change.seekp(0);
if(q==999){cout<<"No more records can be added .You can rewrite records by the insert option in menu.";return;}
temp.insdata();
for(w=0;w<q;w++)
if(strcmp(S[w].accnm(),temp.accnm())<0&&!e)
Change.write((char*)&S[w],sizeof(Student));
else
{
Change.write((char*)&temp,sizeof(Student));
Change.write((char*)&S[w],sizeof(Student));
e=1;
}
}
remove("Student.dat");
rename("temp.dat","Student.dat");//doesn't rename
Change.close();
RData.close();
}
编译器没有显示错误,但它没有重命名文件但删除了文件
由于
答案 0 :(得分:0)
我认为你必须在重命名之前关闭临时文件:
Change.close();
另外,请尝试查看rename documentation并检查重命名返回结果。
result= rename( oldname , newname );
if ( result == 0 ) {
// File successfully renamed"
} else {
// "Error renaming file"
}