c ++指向字符串数组的指针

时间:2012-10-03 13:24:40

标签: c++ pointers compiler-errors malloc

看看这段代码:我试图从控制台读取一些字符串并将它们存储在动态数组中。

int Doctor::addPatients()
{
  string* names = NULL;
  int num;
  cout << "how many patients are to be added? ";
  cin >> num;
  numPatients=num;
  names = new string[numPatients];
  for(int i=0;i++;i<numPatients){
    cout << "enter the next patient's name: ";
    cin.clear();
    cin >> names[i];
  }
  patients = names; //patients is a private member variable of class Doctor
}

执行此代码时,出现以下错误:

malloc: *** error for object 0x10c100898: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
Abort trap: 6

非常感谢任何帮助

3 个答案:

答案 0 :(得分:3)

你没有初始化整数i

答案 1 :(得分:3)

for(int i=0;i++;i<numPatients)  // Condition is the second expression in for syntax

语法错误。

for(int i=0;i<numPatients; i++)

您使用的是什么编译器?您应该收到编译错误而不是运行时错误。你也写了一个复制构造函数吗?有关详细信息,请参阅Rule of Three。为了简化工作,请使用std::vector<std::string>

答案 2 :(得分:1)

在for语句中,for(int i;i++;i<numPatients)

i应该初始化为0,条件应该是第二个参数 正确的格式应该是 -

for(int i=0;i<numPatients;i++)

cin不是获取字符串输入的好方法。 cin只读它直到它看到空格字符(空格,换行符,制表符......)或者使用getline函数 -

语法:

getline(cin,names[i])