While compiling the below code, I am getting an error:
Expression.h
class Expression{
...
protected:
std::ostream Os;
};
Expression.c
Expression::Expression() : Os(std::cout)
{
...
}
Expression::Expression(std::ofstream &os) : Os(os)
{
...
}
Expression::Dump()
{
Os << "=============================================================" << std::endl;
Os << "Os: " << Os << std::endl;
}
error: no match for 'operator<<' (operand types are 'std::basic_ostream<char>' and 'std::ostream {aka std::basic_ostream<char>}')
What is my mistake? What should I do to fix it?
And while giving initial value to parameter like this Os(std::cout)
, what does it mean?
The error is because there is no standard
operator<<
that writes anostream
to anotherostream
.Also,
ostream
can't be copy-constructed from anotherostream
, so if you are trying to specify an outputostream
forExpression
to write to then yourOs
member needs to be declared as a reference instead.