void fun(ostream &os) //可以
main中,ostream &os //不可以,为什么?ostream os //不可以,为什么
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
见std::ostream::ostreaminitialization (1) explicit ostream (streambuf* sb);copy (2) ostream& (const ostream&) = delete;move (3) protected: ostream& (ostream&& x);
没有无参数构造函数。拷贝构造被标记为已删除。
见std::ostream::ostream
initialization (1)
explicit ostream (streambuf* sb);
copy (2)
ostream& (const ostream&) = delete;
move (3)
protected: ostream& (ostream&& x);
没有无参数构造函数。拷贝构造被标记为已删除。