抱歉,如果已经回答了这个问题,但我找不到任何可能的修复方法。
考虑这个课程
class NPALog{
public:
NPALog();
~NPALog();
void error(char* message);
void warning(char* message);
void log(char* message);
void setOutput(char* fileName);
std::ofstream getLogBuffer(){return *m_logOutputFile;};
std::ofstream getErrorBuffer(){return *m_errorOutputFile;};
private:
char* m_fileName;
std::ofstream *m_logOutputFile;
std::ofstream *m_errorOutputFile;
};
当我尝试编译它时,我在getLogBuffer函数中有这个错误:
call to implicitly-deleted copy constructor of 'std::ofstream' (aka 'basic_ofstream<char>')
我对复制构造函数知之甚少,但我唯一想做的就是使用指针,这些指针允许我稍后轻松定义每个流,如果用户想要使用它,则返回缓冲区本身。 / p>
你知道这里有什么问题吗?关于如何做得更好的任何想法?
提前多多感谢。
答案 0 :(得分:6)
您将从std::ofstream
和getLogBuffer()
的值返回getErrorBuffer()
,这将调用复制文件(如错误消息所示)已被删除。你应该返回一个引用。