【问题标题】:How to access member function of one class inside another class?如何在另一个类中访问一个类的成员函数?
【发布时间】:2013-02-08 01:43:42
【问题描述】:

我无法在另一个类中访问一个类的成员函数,尽管我可以在 main() 中很好地访问它。我一直在尝试改变事情,但我无法理解我做错了什么。任何帮助将不胜感激。

这是产生错误的行:

cout << "\n\nRetrieve key from inside Envelope class: " << e.getData() << "\n\n";

这里是代码:

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;
}

【问题讨论】:

  • 错误信息是什么?

标签: c++ class


【解决方案1】:

您将 e 作为常量引用传递 void insert(const recClass&amp; e){
然后你调用了一个未声明为常量的方法 (getData())。

您可以像这样重写getData() 来修复它:

string getData() const{ return key; }

【讨论】:

  • @reformed 有时,可能没那么简单,尤其是在模板中。
【解决方案2】:

您必须将getData() 声明为const,以便可以从const 上下文中调用它。您的insert 函数采用const recClass&amp; e,所以您想在Record 中执行此操作:

string getData() const { return key; }

【讨论】:

    猜你喜欢
    • 2022-01-10
    • 2013-05-11
    • 2012-08-23
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多