分段错误,在动态分配的结构内动态分配结构



这是我的完整代码....这是一个很大的问题,感谢您的时间

https://pastebin.com/Uj97g357

在上面的代码中,我想知道无法为结构内的结构动态分配内存的确切原因。我通常参加codechef,hackerrank,codeforce的比赛。但是,我是做一些这样的项目的新手......我已经调试了一点,所以我找到了错误在哪里,但我无法纠正它,我无法安然入睡......如果您找到原因,请告诉我并帮助我解决问题

简而言之,我的代码是,对于那些没有时间闲暇:)的人:-

struct subject
{
    struct DateTime StartTime,EndTime;   //Don't bother about these structure definitions
    string ClassName,ClassType;
    int ThresholdPercentage,MaxPossiblePercentage;
    struct Note notes;                  //Don't bother about these structure definitions
};
struct students
{
    struct subject *subjects;
    string name;
    int MaxSubjects;
} *student;
int main(void)
{
    int NStudents,Subjects,i,j;
    cout<<"Enter Number of Students:- ";
    cin>>NStudents;
    student=(struct students*)malloc(sizeof(struct students)*(NStudents+1));
    cout<<'n';
    for(i=1;i<=NStudents;i++)
    {
        cout<<"Enter Number of Subjects for "<<i<<" Student:- ";
        cin>>Subjects;
        student[i].MaxSubjects=Subjects;
        student[i].subjects=(struct subject*)malloc(sizeof(struct subject)*(Subjects+1));   
        cout<<'n';
        for(j=1;j<=Subjects;j++)
        {
            cout<<"Enter the name of Subject "<<j<<" :- ";
            cin>>student[i].subjects[j].ClassName;//<<<==================FAULT HERE.
        }
    PrintStudentSubjects(i);
    }
    return 0;
}

实际问题

    struct subject
{
    struct DateTime StartTime,EndTime;   //Don't bother about these structure definitions
    string ClassName,ClassType;
    int ThresholdPercentage,MaxPossiblePercentage;
    struct Note notes;                  //Don't bother about these structure definitions
};
struct students
{
    struct subject *subjects;
    string name;
    int MaxSubjects;
} *student;
student=(struct students*)malloc(sizeof(struct students)*(NStudents+1));
student[i].subjects=(struct subject*)malloc(sizeof(struct subject)*(Subjects+1));//<<== In a loop..

这给了我一个分段错误...我不能使用malloc吗,如果不是为什么?..如果是,怎么来开导我:).

malloc()不会

调用类的构造函数。 使用new .

student = new students[NStudents+1];
student[i].subjects = new subject[Subjects+1];

相关内容

  • 没有找到相关文章

最新更新