收到错误:错误:'std :: ios_base& std :: ios_base :: operator =(const std :: ios_base&)'是私有的

时间:2015-02-25 16:50:55

标签: c++

Pseduo code:

 class A : public class B{
    public: 
    A(){}
    ~A(){}
    private:
    string fileName;
    ofstream stream;
  }

如果我在流程外注释,代码编译得很好,但是使用ofstream,我得到错误:' std :: ios_base& std :: ios_base :: operator =(const std :: ios_base&)'是私人的。你能帮忙吗?

0 个答案:

没有答案