f1004.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1004.cpp
  3. // adjust access control
  4. //=====================================
  5. class Base{
  6.   int b1;
  7. protected:
  8.   int b2;
  9.   void fb2(){ b1=1; }
  10. public:
  11.   int b3;
  12.   void fb3(){ b1=1; }
  13. };//-----------------------------------
  14. class Pri : private Base{
  15. public:
  16.   using Base::b3;
  17. };//-----------------------------------
  18. int main(){
  19.   Pri pri;
  20.   pri.b3 = 1;  // ok
  21. }//====================================
  22.