2

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

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

谢谢。

4

1 回答 1

2

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

#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 * 可能更方便,因为 string 可以很容易地转换为 const char *。

于 2013-09-21T16:11:40.340 回答