xt11-6.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. class A
  4. {public:
  5.   void f1( );
  6.  protected:
  7.   void f2();
  8.  private:
  9.   int i;
  10. };
  11. class B: public A
  12. {public:
  13.   void f3( );
  14.   int k;
  15.  private:
  16.   int m;
  17. };
  18. class C: protected B
  19. {public:
  20.   void f4();
  21.  protected:
  22.   int n;
  23.  private:
  24.   int p;
  25. };
  26. class D: private C
  27. {public:
  28.   void f5();
  29.  protected:
  30.   int q;
  31.  private:
  32.   int r;
  33. };
  34. int main()
  35. {A a1;
  36.  B b1;
  37.  C c1;
  38.  D d1;
  39.  return 0;
  40. }