例4.9 含有多个对象成员的派生类构造函数的执行顺序

// 例4.9 含有多个对象成员的派生类构造函数的执行顺序。

#include
#include
using namespace std;

class Student{
	public:
	  Student(int number1,string name1,float score1){
	  	number = number1;
	  	name = name1;
	  	score = score1;
	  }
	  void print(){
	    cout<<"学号:"<

你可能感兴趣的:(C++)