插入到multimap会导致segfault

Rus*_*sty 0 c++ stl insert multimap segmentation-fault

我正在研究一个在我自己的类中使用multimaps的项目,我遇到了一个段错误.以下是我的代码中与该问题相关的部分.我真的很感激一些帮助.谢谢.

这是database.h

#include <iostream>
#include <map>

using namespace std;

class database{
 public:
  database(); // start up the database                                               
  int update(string,int); // update it                                               
  bool is_word(string); //advises if the word is a word                              
  double prox_mean(string); // finds the average prox                                
 private:
  multimap<string,int> *data; // must be pointer                                     
 protected:

};
Run Code Online (Sandbox Code Playgroud)

这是database.cpp

#include <iostream>
#include <string>
#include <map>
#include <utility>

#include "database.h"

using namespace std;


// start with the constructor                                               
database::database()
{
  data = new multimap<string,int>; // allocates new space for the database  
}

int database::update(string word,int prox)
{
  // add another instance of the word to the database                       
  cout << "test1"<<endl;
  data->insert( pair<string,int>(word,prox));
  cout << "test2" <<endl;
  // need to be able to tell if it is a word                                
  bool isWord = database::is_word(word);
  // find the average proximity                                             
  double ave = database::prox_mean(word);

  // tells the gui to updata                                                
  // gui::update(word,ave,isWord); // not finished yet                      

  return 0;
}
Run Code Online (Sandbox Code Playgroud)

这是test.cpp

#include <iostream>
#include <string>
#include <map>

#include "database.h" //this is my file                                              

using namespace std;

int main()
{
  // first test the constructor                                                      
  database * data;

  data->update("trail",3);
  data->update("mix",2);
  data->update("nut",7);
  data->update("and",8);
  data->update("trail",8);
  data->update("and",3);
  data->update("candy",8);

  //  cout<< (int) data->size()<<endl;                                               

  return 0;

}
Run Code Online (Sandbox Code Playgroud)

非常感谢.它编译并运行到cout << "test1" << endl;下一行的段错误.

生疏

Mar*_*k B 5

你从来没有真正创建过数据库对象,只是一个指向无处的指针(也许你已经习惯了另一种语言).

尝试创建一个这样的 database data;

然后更改您->.访问的成员.

考虑在The Definitive C++ Book Guide and List中获取其中一本书.