gpt4 book ai didi

c++ - C++ 中的 Malloc 错误?

转载 作者:行者123 更新时间:2023-11-28 06:23:12 29 4
gpt4 key购买 nike

我正在做一个类项目,我相信我的框架是正确的。好吧,除了它不起作用的事实。通常有语法或逻辑错误,我可以查明我搞砸的地方,但这次我完全迷路了,我不知道如何解决这个问题。这是它向我抛出的内容:

DELETE
DELETE
heapOfStudents(642,0x7fff74944300) malloc: *** error for object 0x7fd2d2803208: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
Abort trap: 6

是的,我不知道我做了什么。不过我好像发动了陷阱卡什么的。不管怎样,你们可能都需要看我的代码,就在这里。

//main.cpp
#include <string>
#include <iostream>
#include <fstream>
#include "student.h"
#include "address.h"
#include "date.h"

using namespace std;

int main(){

Student *S = new Student[50];

ifstream inFile;
inFile.open("data.dat");

string lines[51];
string item;
int x = 0;
while(!inFile.eof()){
getline(inFile, item);
if(item != ""){
lines[x] = item;
x++;
}
}

for (int i = 0; i < 51; i++){
string line = lines[i];
string delimiter = ",";

size_t pos = 0;
string sub;
x = 0;

while((pos = line.find(delimiter)) != string::npos){
sub = line.substr(0, pos);
line.erase(0, pos + delimiter.length());
if(x == 0){
S[i].setLName(sub);
}else if(x == 1){
S[i].setFName(sub);
}else if(x == 2 || x == 3 || x == 4 || x == 5 || x == 6){
S[i].setAddressInfo(sub, x - 2);
}else if(x == 7 || x == 8){
S[i].setDate(sub, x - 7);
}else if(x == 9){
S[i].setGPA(sub);
}else{
S[i].setCredHours(line);
}
x++;

delete S;
}

}

inFile.close();

return 0;

}

这是 Student.cpp

//student.cpp
#include <string>
#include <iostream>
#include "student.h"

using namespace std;

Student::Student(){

}

void Student::setFName(string fName){
Student::fName = fName;
}

void Student::setLName(string lName){
Student::lName = lName;
}

void Student::setGPA(string GPA){
Student::GPA = GPA;
}

void Student::setCredHours(string credHours){
Student::credHours = credHours;
}

void Student::setAddressInfo(string info, int part){
if(part == 0){
Student::home.setAddress1(info);
}else if(part == 1){
Student::home.setAddress2(info);
}else if(part == 2){
Student::home.setCity(info);
}else if(part == 3){
Student::home.setState(info);
}else if(part == 4){
Student::home.setZip(info);
}
}

void Student::setDate(string info, int part){
if(part == 0){
Student::dateOfBirth.setDate(info);
}else if(part == 2){
Student::dateOfComp.setDate(info);
}
}

string Student::getFName(){
return Student::fName;
}

string Student::getLName(){
return Student::lName;
}

string Student::getGPA(){
return Student::GPA;
}

string Student::getCredHours(){
return Student::credHours;
}

void Student::reportStudent(){

}

void Student::unsortedPrint(){

}

Student::~Student(){
cout << "DELETE" << endl;
}

如果您需要查看我的另外两个文件,请对我打招呼。任何帮助都会很棒,因为我只是被困在这个障碍上。

谢谢!

最佳答案

您不仅从不在动态数组 S 中存储信息,而且您似乎删除了 S 但它从未存储过任何数据。

此外,您必须使用delete[] S,除非您只想释放第一个内存地址的内容。

关于c++ - C++ 中的 Malloc 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29000243/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com