I am doing some program, and so far so good when it's about implementation, however now I am stuck with trivial problem, but I am in no position to find a solution for it. The problem is in this part of the code, and it say
Error 1 error C2662: 'Smetler::action' : cannot convert 'this' pointer from 'const Smetler' to 'Smetler &'
Anyone knows what's the problem here is, since I am sure I applied all what it was been said.
virtual void action()
{
std::cout << "I'm a copy" << copy() << ". Doing observations." << std::endl;
}
Smetler* copy() const { return new Smetler (*this); }
private:
void writeDown(ostream& wd) const
{
wd << Worker::getOccupation() << " " << Worker::getName() << ',' << Worker::getPosition() << action();
}
};
Thanks in advance.
return new Smetler (*this);Also, this is NOT a good programming style. You will definitely get memory leaks sooner or later. Use smart pointers! – Violet Giraffe Apr 10 '12 at 12:30C2662refer to, exactly? – In silico Apr 10 '12 at 12:42