User profile: jim80y

User info
User name:jim80y
Name:JimbO
Location:Melbourne
Bio:Aim for the cat, dude! Aim for the cat!
Statistical data
Birthdate:Jan 1, 1972
Gender:Male
Occupation:Programmer
Skills:C
C++
C++/MFC
Pascal
ADA
Assembly
C++/.NET
Java
LISP
C#
Javascript
C#/.NET
bash
History
Joined:
Number of posts:176
Latest posts:

Operator Overloading issue
A good source for operator overloading is http://courses.cms.caltech.edu/cs11/material/cpp/donnie/cp...

Operator Overloading issue
The correct signature of operator== is [code] bool MyClass::operator==(const MyClass& other) const;...

Operator Overloading issue
The error output's line numbers no longer match your code, but I suspect it's because you have semi-...

Explain this code to me please :)
If you remove the & so it reads [code]void Add(const Critter aCritter) { ... }[/code] it means that ...

Explain this code to me please :)
OK, the main() function creates a Farm object myFarm. It then adds three critters to myFarm. If we...