如何在類中定義輸出文件流,以便我不必將它傳遞給函數。基本上我想要做的是這樣的:在類中定義輸出文件流
class A {
private:
ofstream otp ;
};
然後在我的構造函數,我只是有otp.open("myfile");
和其他功能我有otp.open("myfile", ios::app);
,但在編譯的時候失敗了,他說:
../thermo.h(18): error: identifier "ofstream" is undefined
ofstream otp ;
我已確保#include <fstream>
謝謝!
我想在我的每個函數中重新定義'ofstream'並不是什麼大事......只是想知道我正在嘗試做什麼是可能的,可能是爲了好奇吧 – Amit