class GoodStudent:private Mentor,private Student
{
public :
using Mentor::GetInfo; ///-------------------------------------------基类方法露出来了
GoodStudent(string name,string title,int i):Mentor(name,title),Student(i)
{};
// void GetInfo();
};