gpt4 book ai didi

c++ - 如果我从不在打开的文件流上调用 `close` 会发生什么?

转载 作者:IT老高 更新时间:2023-10-28 21:49:59 27 4
gpt4 key购买 nike

以下是相同案例的代码。

#include <iostream>
#include <fstream>

using namespace std;

int main () {
ofstream myfile;
myfile.open ("example.txt");
myfile << "Writing this to a file.\n";
//myfile.close();
return 0;
}

如果我取消注释 myfile.close() 行会有什么不同?

最佳答案

没有区别。文件流的析构函数将关闭文件。

您也可以依靠构造函数来打开文件,而不是调用 open()。您的代码可以简化为:

#include <fstream>

int main()
{
std::ofstream myfile("example.txt");
myfile << "Writing this to a file.\n";
}

关于c++ - 如果我从不在打开的文件流上调用 `close` 会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28253569/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com