This is a part of my code : Declaration in the .h file :
virtual bool operator==(const File& file) const = 0;
and in the .cpp file
bool File::operator==(const File& file) const {
return true;
}
I get this compilation error :
1>c:\users\talw\desktop\hw5\hw5\project1\main.cpp(76): error C2259:
'Directory' : cannot instantiate abstract class
1> due to following members:
1> 'bool File::operator ==(const File &) const' : is abstract
1> c:\users\talw\desktop\hw5\hw5\project1\file.h(57) : see
declaration of 'File::operator =='
Please help. Thanks
This is a pure virtual operator overloading making your class abstract so you can have the function implementation in the same class but cannot instantiate an abstract class which is giving you the below error.
A derived class of the abstract
File
class can have implementation of this function and can be instantiated.