1 //public继承特点:基类中公有成员和保护成员将分别作为派生类的公有成员和保护成员 2 //private继承特点:基类中公有成员和保护成员将分别作为派生类的私有成员 3 //protected继承特点:基类中公有成员和保护成员将分别作为派生类的保护成员 4 //下面是public继承举例 5 #include6 class A{ 7 private: 8 int a1; 9 protected:10 int a2;11 public:12 int a3;13 A(int x1,int x2,int x3){14 a1=x1;15 a2=x2;16 a3=x3;17 }18 ~A(){}19 };20 21 class B:public A{22 private:23 int b1;24 protected:25 int b2;26 public:27 int b3;28 B(int x1,int x2,int x3,int y1,int y2,int y3):A(x1,x2,x3){29 b1=y1;30 b2=y2;31 b3=y3;32 }33 ~B(){}34 35 void Print()const{36 //cout<<"a1="< <