Je reçois une référence indéfinie à `vtable for student 'lors de la compilation du fichier d'en-tête suivant:
étudiant.h
class student
{
private:
string names;
string address;
string type;
protected:
float marks;
int credits;
public:
student();
student(string n,string a,string t,float m);
~student();
string getNames();
string getAddress();
string getType();
float getMarks();
virtual void calculateCredits();
int getCredits();
};
student::student(){}
student::student(string n, string a,string t,float m)
{
names = n;
address = a;
marks = m;
}
student::~student(){}
Je ne trouve pas ce qui ne va pas.
Vous déclarez une fonction virtual
sans la définir:
virtual void calculateCredits();
Définissez-le ou déclarez-le comme:
virtual void calculateCredits() = 0;
Ou simplement:
virtual void calculateCredits() { };
En savoir plus sur vftable: http://en.wikipedia.org/wiki/Virtual_method_table