我如何创建一个继承FILE方法的类

时间:2014-04-22 03:09:21

标签: c++ file inheritance

如何扩展FILE类以使用其方法?换句话说,我如何使用默认FILE对象提供的所有函数,并且仍然具有模仿实际函数的相同功能?

1 个答案:

答案 0 :(得分:0)

class myFile
{
   File *_f;
public:
   myFile(File *f){ /*open the file here, then make _f=f;*/ };
   virtual ~myFile(){ /*close the file here*/ };
   // and can add more methods here
}