I'm having trouble overloading my << operator to print the contents of an array of unknown size. I searched for a solution, but the only one I found would require me to put all of my private data members in a struct (which seems a bit unnecessary to me). I can't edit the function to make it a friend or change *q to &q (or a const).
Here's my << overload code:
ostream& operator<<(ostream& out, Quack *q)
{
if (q->itemCount() == 0)
out << endl << "quack: empty" << endl << endl;
else
{
int i;
int foo;
for (int i = 0; i < q->itemCount(); i++ )
{
foo = (*q)[i];
out << *(q + i);
} // end for
out << endl;
}
return out;
}
And here are my private data members:
private:
int *items; // pointer to storage for the circular array.
// Each item in the array is an int.
int count;
int maxSize;
int front;
int back;
Here is how the function is called (cannot edit this):
quack = new Quack(QUACK_SIZE);
//put a few items into the stack
cout << quack;
Here is how the output should be formatted:
quack: 1, 2, 3, 8, 6, 7, 0
and if the array is empty, then
quack: empty
Any help will be appreciated. Thank you!
operator <<isn't allowed to be a friend, why bother to list the private fields ofQuack? What public methods ofQuackallow access to individual items orQuack::items, and to the item count? – outis Oct 29 '11 at 4:01Quack, then you need to say so in your question. – Emile Cormier Oct 29 '11 at 4:02qas aQuacknot aQuack*, and (b) the function shouldn't take aQuack*anyway. – Lightness Races in Orbit Oct 29 '11 at 4:33