I am unable to access a member function of one class inside another, though I can access it fine in main(). I’ve been trying to switch things around, but am unable to understand what am I doing wrong. Any help would be appreciated.
Here is the line that generates the error:
cout << "\n\nRetrieve key from inside Envelope class: " << e.getData() << "\n\n";
And here is the code:
class Record{
private:
string key;
public:
Record(){ key = ""; }
Record(string input){ key = input; }
string getData(){ return key; }
Record operator= (string input) { key = input; }
};
template<class recClass>
class Envelope{
private:
recClass * data;
int size;
public:
Envelope(int inputSize){
data = new recClass[inputSize];
size = 0;
}
~Envelope(){ delete[] data; }
void insert(const recClass& e){
data[size] = e;
cout << "\n\nRetrieve key from inside Envelope class: " << e.getData() << "\n\n";
++size;
}
string getRecordData(int index){ return data[index].getData(); }
};
int main(){
Record newRecord("test");
cout << "\n\nRetrieve key directly from Record class: " << newRecord.getData() << "\n\n";
Envelope<Record> * newEnvelope = new Envelope<Record>(5);
newEnvelope->insert(newRecord);
cout << "\n\nRetrieve key through Envelope class: " << newEnvelope->getRecordData(0) << "\n\n";
delete newEnvelope;
cout << "\n\n";
return 0;
}
You are passing
eas a constant referencevoid insert(const recClass& e){And then you are calling a method (
getData()) not declared as constant.You can fix it by rewriting
getData()like this: