猿问

c++类里面定义结构体怎么做?

c++类里面定义结构体怎么做


慕标琳琳
浏览 435回答 2
2回答

米脂

结构体相当于类,它也可以用public\private修饰,只不过我们一般不用。应该把他定义在类的外面,类中间可以包含这个结构体的成员变量。如:struct Student{char number[20];char name[20];float math;float english;float history;};class a{private:struct Student stu;}
随时随地看视频慕课网APP
我要回答