C:\Users\qcchou\Desktop\360\nb\v.cpp(33) : error C2039: 'stud' : is not a member of 'Student'
C:\Users\qcchou\Desktop\360\nb\v.cpp(33) : error C2039: 'stud' : is not a member of 'Student'
日期:2021-11-04 14:07:35 人气:1
Student stud[5]={Student(101,78.5),Student(102,85.5),Student(103,98.5),Student(104,100),Student(105,95.5);
如此声明,说明stud是Student类型的数组,stud本质是数组,并不是Student类型。
void display();是类Student的成员函数,而stud是Student类型数组,并不是Student类型,所以
所以p->stud.displa
如此声明,说明stud是Student类型的数组,stud本质是数组,并不是Student类型。
void display();是类Student的成员函数,而stud是Student类型数组,并不是Student类型,所以
所以p->stud.displa