带字符串数组的分段错误c ++

| 运行程序时,出现“分段错误”错误。我相信它来自我如何使用在类定义中私下声明的数组“ string * words \”。我在.cpp文件中使用它 有人知道我需要改变吗? 这是我认为问题所在的函数:
Dictionary::Dictionary(string filename){

    ifstream inF;

    inF.open(filename.c_str());

    if (inF.fail()){
      cerr << \"Error opening file\" <<endl;
      exit(1);
    }

    inF >> numwords;
    numwords = 3000;
    words = new string(words[numwords]);


    for(int i=0; i <= numwords - 1; i++){
      inF >> words[i];
    }
    inF.close();
  }
已邀请:
该行:
words = new string(words[numwords]);
实际上应该是:
words = new string[numwords];
您将需要学习如何使用调试器。确切的过程取决于您所使用的系统。但是,如果您在调试器中运行代码,则调试器将在检测到问题的确切行停止。可以想象,这对于调试非常有帮助。 请注意,检测到该问题的行与该问题开始的行可能会完全不同。

要回复问题请先登录注册