???????????Aδ???壬?e????????????????????£?
1 #include <iostream>
2 using namespace std;
3 class D
4 {
5 public:
6     void getD()
7     {
8         cout<<"i am getD()"<<endl;
9     }
10 };
11 class A
12 {
13 public:
14     A(){
15         cout<<"this a"<<endl;
16     }
17     void getA(){cout<<"i am getA()"<<endl;}
18     ~A(){cout<<"a dead"<<endl;}
19     class B:public D
20     {
21     public:
22         B(){cout<<"this b"<<endl;}
23         ~B(){cout<<"b dead"<<endl;}
24         void getB(){cout<<"i am getB()"<<endl;}
25
26     };
27     B b;
28 };
29 int main(int argc?? char * argv[])
30 {
31     A a;
32     a.b.getB();
33     a.getA();
34     a.b.getD();
35     A::B b;
36     b.getB();
37     b.getD();
38     return 0;
39 }
??????????????????????B????????????????????Щ??й????
?????????
?????????????c++?????????????????????????????????????????????????????????????????????????????????????????????????????????????c++???????