//Eg7-1.cpp //基类指针或引用指向派生类对象时,虚函数与非虚函数区别: //声明Employee的print为虚函数,则可访问到Manager的print函数,非虚函数,则只能访问到Employee的print #include #include using namespace std; class Employee{ public: Employee(string name, string id); string getName(); string getId(); float getSalary(); virtual void print(); private: string Name; string Id; }; Employee::Employee(string name,string id){ Name=name; Id=id; } string Employee::getName(){ return Name; } string Employee::getId(){ return Id; } float Employee::getSalary(){ return 0.0; } void Employee::print(){ cout<<"姓名:"<print(); Employee &rM=m; rM.print(); system("pause"); return 0; } //Virtual关键字其实质是告知编译系统,被指定为virtual的函数采用动态联编的形式编译。