C++类的继承


 1 #include<iostream>
 2 using namespace std;
 3 double balance[5] = {1000.0, 2.0, 3.4, 7.0, 50.0};
 4 class TEST{
 5     //基类
 6     public:
 7     int DATA[4][4];
 8     void Fun_Test(char a)
 9     {
10         cout<<a<<endl;
11     }
12     
13 };
14 //类的继承
15 class TEST1:public TEST{
16     
17 };
18 int main()
19 {
20     int temp;
21     TEST *p=new TEST;//定义一个对象指针,访问类公有成员
22     p->Fun_Test('P');
23     temp=p->DATA[2][2]=5;
24     
25     cout<<temp<<endl;
26     cout<<"class TEST1:public TEST"<<endl;
27     TEST1 test1;//定义一个对象
28     test1.Fun_Test('E');
29     delete p;//释放
30 }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM