我不知道该怎么说,所以我会尝试把它放在代码中。(这有很多错误我知道它不会编译它只是为了显示我想要做的事情,因为我无法用语言表达)
using namespace std; //for correctness sake
class foo {
public:
foo(int a=0, int n=0);
void stuff(int a);
void function(int n);
const int get_function() {return n;}
const int get_stuff(){return a;}
private:
int n, a;
};
struct Store{
public: get_foo(){return vector<f.foo>;} //I'm not too sure of the syntax here but you get the idea
private:
foo f;
}
基本上,我想获取类 foo 中返回的所有信息,并将其格式化输出到文件中。问题是,我需要在文件中制作其中的许多内容,并且它必须能够读回它才能使其有价值。所以只是将每个连续的 foo 类附加到文件中是行不通的(至少我不明白如何)。
我尝试使用ostream
重载<<
运算符,但我不确定如何调用它以将其写入文件。欢迎任何建议!谢谢。