1

オブジェクトへのポインターのベクトルを作成し、それを逆参照して保持する値を出力するプログラムを作成しようとしています。しかし、プログラムは seg fault により中断しています。

セグメンテーション違反は関数の行cout << p1->rno << endl;にありdisplay( )ます。

問題を見つけるのを手伝ってください。

#include<iostream>
#include<vector>
using namespace std;
class student
{
  public:
  int rno;
  char name[25];
  student(int r,char *p):rno(r)
  {
     //cout << "Con No is" << ++cnt << endl;
     strcpy(name,p);
  }
  static int cnt;
};

void display(vector<student *> &vec)
{
     vector<student *> :: iterator p;
     student *p1;
     for(p = vec.begin( );p != vec.end( );++p);
     {
       p1 = *p;
       cout << p1->rno << endl;
     }
}
int student :: cnt = 0;

int main( )
{
    vector<student *> vec;
    student *p;
    int i = 0; 
    while(i < 10)
    {
      p = new student(i,"Ganesh");
      vec.push_back(p);
      i++;
    }
    display(vec);
    system("PAUSE 100");
    return 0;
}
4

1 に答える 1