0

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

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

任何帮助是极大的赞赏

4

3 回答 3

3

你没有初始化整数 i

于 2012-10-03T13:25:59.980 回答
3
for(int i=0;i++;i<numPatients)  // Condition is the second expression in for syntax

语法错误。

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

你用的是什么编译器?您应该得到一个编译错误而不是运行时错误。你还写了一个复制构造函数吗?有关更多信息,请参阅三法则。为了简化工作,请使用std::vector<std::string>.

于 2012-10-03T13:29:52.393 回答
1

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

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

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

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

句法:

getline(cin,names[i])
于 2012-10-03T13:28:50.210 回答