使用指向 class 且 unordered_map 作为成员的指针时出现段错误

Segfault when using pointer to class with unordered_map as member

我正在尝试实现我自己的 class,它有一个 unordered_map 作为成员。现在奇怪的是,当我使用指向 class 的指针调用成员函数时出现分段错误,而当我不使用指针时一切正常。

我附上了一个重现该问题的最小工作示例。我使用 Ubuntu 14.04 和 gcc 版本 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3),并用 g++ -std=c++11 TestClass.cc 编译我的代码。你能告诉我哪里出了问题吗?

非常感谢!

TestClass.h:

#include <unordered_map>
#include <vector>
#include <iostream>

using namespace std;


// payload class, which is stored in the container class (see below)
class TestFunction {
  public:
    void setTestFunction(vector<double> func) {
      function = func;
    }
    void resize(vector<double> func) {
      function.resize(func.size());
    }
  private:
    vector<double> function;
};

// main class, which has an unordered map as member. I want to store objects of the second class (see above) in it
class TestContainer {
public:
  void setContainer(int index, TestFunction function) {
   cout << "Trying to fill container" << endl;
   m_container[index]=function; // <---------------- This line causes a segfault, if the member function is used on a pointer
   cout << "Done!" << endl;
  }
private:
  unordered_map<int,TestFunction> m_container;
};

主程序TestClass.cc:

#include <TestClass.h>

int main(void) {
  //define two objects, one is of type TestContainer, the other one is a pointer to a TestContainer
  TestContainer testcontainer1, *testcontainer2;

  // initialize a test function for use as payload
  TestFunction  testfunction;
  vector<double> testvector = {0.1,0.2,0.3};

  // prepare the payload object
  cout << "Setting test function" << endl;
  testfunction.resize(testvector);
  testfunction.setTestFunction(testvector);

  // fill the payload into testcontainer1, which works fine
  cout << "Filling test container 1 (normal)" << endl;
  testcontainer1.setContainer(1,testfunction);

  // fill the same payload into testcontainer2 (the pointer), which gives a segfault
  cout << "Filling test container 2 (pointer)" << endl;
  testcontainer2->setContainer(1,testfunction);

  return 0;
}

您没有初始化 testcontainer2。这就是为什么当您尝试使用它时出现段错误的原因。