gpt4 book ai didi

c++ - ofstream- 将元素写入文件 - C++

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:48:41 29 4
gpt4 key购买 nike

我想用 C++ 将数字写入 .dat 文件。我创建了一个函数,它使用 ofstream。正确吗?

void writeValue(char* file, int value){
ofstream f;
f.open(file);
if (f.good()){
f<<value;
}
f.close();
}

谢谢。

最佳答案

是的,这是正确的。也可以简化,例如:

#include<fstream>
#include<string>
using namespace std;

void writeValue(const char* file, int value){
ofstream f(file);
if (f)
f<<value;
}

int main()
{
string s = "text";
writeValue(s.c_str(), 12);
}

在 C++ 中,使用 const char* 而不是 char * 可能更方便,因为字符串可以很容易地转换为 const char *。

关于c++ - ofstream- 将元素写入文件 - C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18934538/

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