gpt4 book ai didi

c++ - 为什么我需要时间来关闭流程中的文件

转载 作者:行者123 更新时间:2023-11-28 07:24:19 25 4
gpt4 key购买 nike

我是 c++ 的新手,我有疑问。
我有这样的代码:

    void FlowState::closeFile() {
if (outfile) {
//from here
struct timeval times[2];
times[0] = myflow.tstart;
times[1] = myflow.tstart;
outfile->flush();
outfile->close();
//to here
}
}

我对所选部分有疑问。为什么我需要这个?效果如何?

这可能会有帮助:

class FlowState {
public:
string flowid;
class Streamdemux &demux;
Flow myflow;

// ...

FlowState(class Streamdemux &demux_, const Flow &flow_,
u_int32_t isn_, bool tcp);
virtual ~FlowState();

// ...

};

和:

 class Flow: public flowAddr {
public:
int32_t vlan;
struct timeval tstart;
struct timeval tlast;
uint64_t packet_count;
uint64_t connection_count;
string fileNameTemplate;

Flow() :
vlan(), tstart(), tlast(), packet_count(), connection_count() {
fileNameTemplate = "%S:%s-%D:%d"; //brakuje ID połączenia
}

Flow(const flowAddr &flowAddr_, uint16_t vlan_,
const struct timeval &t1, const struct timeval &t2,
uint64_t connection_count_) :
flowAddr(flowAddr_), vlan(vlan_), tstart(t1), tlast(t2), packet_count(
0), connection_count(connection_count_) {
fileNameTemplate = "%S:%s-%D:%d";
}

virtual ~Flow() {
}

};

最佳答案

这样想:你有一个运行很长时间的程序,不时打开文件。但是,文件句柄与计算机上的其他所有内容一样,是一种有限的资源。因此,如果程序不关闭文件,它迟早会用完可用的文件句柄。

关于c++ - 为什么我需要时间来关闭流程中的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18999064/

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