I have base class Account and derived class Student and Teacher. I implement read/write in the CRTP so that I dont need to write the function in each class.
Strangely there is object slicing in the read function and *this used in the function, but not in the write function.
Can anyone explain what's happening here? And how to fix it?
// Account.h
class Account {
public:
Account();
virtual void callMenu() = 0;
protected:
int ID;
// Some more data (Total of 148 bytes)
}
// AccountCRTP.h
template<class T>
class AccountCRTP : public Account {
public:
// To prevent object slicing
void callMenu() {
T account;
account.ID = this->ID;
cout << "Account size: " << sizeof(account) << " bytes\n"; pause(); // 268 bytes
if (account.readData())
account.menu();
}
bool readData() {
T account;
cout << "Account size : " << sizeof(account) << " bytes\n"; pause(); // 268 bytes
cout << "This size : " << sizeof(*this) << " bytes\n"; pause(); // 148 bytes??? Why?
while (reading data to account) {
if (this->ID == account.ID) {
*this = account; // Object slicing happens
return true;
}
}
return false;
}
bool writeData() {
T temp;
int position = 0l
while (reading data to temp) {
if (this->ID == account.ID)
break;
position++;
}
cout << "Account size : " << sizeof(temp) << " bytes\n"; pause(); // 268 bytes
cout << "This size : " << sizeof(*this) << " bytes\n"; pause(); // 148 bytes right?
datafile.seekp(position * sizeof(T));
// For unknown reason this also writes scores of the student
// Object slicing didn't happen here. Why?
datafile.write((char*)this, sizeof(T));
}
private:
// No additional data in this class (Still 148 bytes)
}
// Student.h
class Student :
public AccountCRTP<Student>
{
public:
void menu() {
// Student menu
}
private:
// Some more 120 bytes of data (Total of 268 bytes)
}
// main.cpp
int main() {
vector<unique_ptr<Account>> account;
account.push_back(unique_ptr<Account>(new Student));
account.push_back(unique_ptr<Account>(new Teacher));
account[0]->callMenu();
}