C++中public,protected,private派生类继承问题和访问权限问题

时间:2022-10-11 08:50:05

C++中public,protected,private派生类继承问题和访问权限问题

当一个子类从父类继承时,父类的所有成员成为子类的成员,此时对父类成员的访问状态由继承时使用的继承限定符决定。

1.如果子类从父类继承时使用的继承限定符是public,那么
(1)父类的public成员成为子类的public成员,允许类以外的代码访问这些成员;
(2)父类的private成员仍旧是父类的private成员,子类成员不可以访问这些成员;
(3)父类的protected成员成为子类的protected成员,只允许子类成员访问;

2.如果子类从父类继承时使用的继承限定符是protected,那么

(1)父类的public成员成为子类的protected成员,只允许子类成员访问;
(2)父类的private成员仍旧是父类的private成员,子类成员不可以访问这些成员;

(3)父类的public成员成为子类的protected成员,只允许子类成员访问

3.如果子类从父类继承时使用的继承限定符是private,那么

(1)父类的public成员成为子类的private成员,只允许子类成员访问;
(2)父类的private成员仍旧是父类的private成员,子类成员不可以访问这些成员;
(3)父类的protected成员成为子类的private成员,只允许子类成员访问;

其实这些都很有的规律的,子类public时表示最大的继承权限是public,所以子类按照原样继承,子类protected继承时最大继承权限是protected, 所以基类的public成员降级成为protected了....子类private继承时所以都成为private了, 不过子类不能访问基类的private成员..

子类默认的是private继承基类...

举个使用private继承的例子,Boost::Utility库的不可以复制的类 noncopyable

#include "boost/utility.hpp"

或者是

#include "boost/noncopyable.hpp"

  1. #ifndef BOOST_NONCOPYABLE_HPP_INCLUDED
  2. #define BOOST_NONCOPYABLE_HPP_INCLUDED
  3. namespace boost {
  4. //  Private copy constructor and copy assignment ensure classes derived from
  5. //  class noncopyable cannot be copied.
  6. //  Contributed by Dave Abrahams
  7. namespace noncopyable_  // protection from unintended ADL
  8. {
  9. class noncopyable
  10. {
  11. protected:
  12. noncopyable() {}
  13. ~noncopyable() {}
  14. private:  // emphasize the following members are private
  15. noncopyable( const noncopyable& );
  16. const noncopyable& operator=( const noncopyable& );
  17. };
  18. }
  19. typedef noncopyable_::noncopyable noncopyable;
  20. } // namespace boost
  21. #endif  // BOOST_NONCOPYABLE_HPP_INCLUDED

类 boost::noncopyable 被规定为作为私有基类来使用,它可以有效地关闭复制构造和赋值操作:

  1. #include "boost/utility.hpp"
  2. class please_dont_make_copies : boost::noncopyable {
  3. public:
  4. void do_stuff() {
  5. std::cout << "Dear client, you just cannot copy me!";
  6. }
  7. };

这样就禁止了复制和赋值....

=========================================================================

c++ big three

三法则英语rule of threethe Law of The Big ThreeThe Big Three三法则三大定律)在 C++ 程序设计里,它是一个以设计的基本原则而制定的定律,三法则的要求在于,假如类型有明显地定义下列其中一个成员函数,那么程序员必须连其他二个成员函数也一同编写至类型内,亦即下列三个成员函数缺一不可。 [1]:

上述三个函数是特别的成员函数,假如程序员没有自行定义或是编写声明它们,那么编译器会自动地创建它们,并且会编译至应用程序内。相反地,假如程序员有定义上述三者其中一个函数,那么由编译器自动产生出来的上述三个函数是不会搭配到这个类型内。三法则(Rule of three)这个专有名词是由 Marshall Cline 于 1991 年创立的[2]

class_a.h文件

  1. #ifndef _CLASS_A_H_
  2. #define _CLASS_A_H_
  3. #ifndef _MSC_VER
  4. #undef NULL
  5. #define NULL 0
  6. #endif
  7. #include <iostream>
  8. #include <cstdlib>
  9. #define BUFFER_SIZE 7
  10. using namespace std;
  11. class ClassA
  12. {
  13. public:
  14. // 三種建構子
  15. ClassA()
  16. {
  17. cout<<"ClassA():"<<endl;
  18. this->setAlloc(BUFFER_SIZE);
  19. this->setData();
  20. }
  21. ClassA(const int n)
  22. {
  23. cout<<"ClassA(const int n):"<<endl;
  24. this->setAlloc(n);
  25. this->setData();
  26. }
  27. // 複製建構子
  28. ClassA(const ClassA& clone)
  29. {
  30. cout<<"ClassA(const ClassA& clone):"<<endl;
  31. this->setAlloc(clone.m_N);
  32. this->setData(clone.m_pn);
  33. }
  34. // 複製指定運算子成員函式
  35. ClassA& operator=(const ClassA& clone)
  36. {
  37. cout<<"ClassA& operator=(const ClassA& clone)"<<endl;
  38. // 保護:禁止自己設值給自己
  39. if ( this != &clone )
  40. {
  41. this->setData(clone.m_pn);
  42. }
  43. return *this;
  44. }
  45. // 解構子
  46. ~ClassA()
  47. {
  48. cout<<"~Destructor!!!"<<endl;
  49. // 釋放記憶體
  50. delete [] this->m_pn;
  51. }
  52. // 配置
  53. void setAlloc(const int n)
  54. {
  55. this->m_N = n;
  56. // 配置一塊記憶體給指標
  57. this->m_pn = new int[this->m_N];
  58. }
  59. // 填入一堆的整數值
  60. void setData(int* pn = NULL)
  61. {
  62. for ( int i = 0; i < this->m_N; i ++)
  63. {
  64. // 給初始值
  65. if ( pn == NULL )
  66. {
  67. this->m_pn[i] = (2 * i + 1);
  68. }
  69. // 複製指標儲存的整數值
  70. else
  71. {
  72. this->m_pn[i] = pn[i];
  73. }
  74. }
  75. }
  76. // 列印顯示
  77. void print(void)
  78. {
  79. for ( int i = 0; i < this->m_N; i ++)
  80. {
  81. cout<<" "<<this->m_pn[i];
  82. }
  83. cout<<endl;
  84. }
  85. private:
  86. // 指標
  87. int* m_pn;
  88. // 元素個數
  89. int m_N;
  90. };
  91. #endif

主函数

  1. // Headers and Macros
  2. #ifndef _MSC_VER
  3. #undef NULL
  4. #define NULL 0
  5. #endif
  6. #include <iostream>
  7. #include <cstdlib>
  8. #include "class_a.h"
  9. using namespace std;
  10. //
  11. //Main Function
  12. #ifndef _MSC_VER
  13. int
  14. #else
  15. void
  16. #endif
  17. main(int argc, char** argv)
  18. {
  19. // 區塊
  20. {
  21. // 建立第一個物件
  22. ClassA A(BUFFER_SIZE);
  23. cout<<" A =>";
  24. A.print();
  25. {
  26. // 開始執行 ClassA(const ClassA& clone)
  27. ClassA B = A;
  28. cout<<" B =>";
  29. B.print();
  30. }
  31. {
  32. ClassA C;
  33. // 開始執行 ClassA& operator=(const ClassA& clone)
  34. C = A;
  35. cout<<" C =>";
  36. C.print();
  37. }
  38. }
  39. system("PAUSE");
  40. return
  41. #ifndef _MSC_VER
  42. EXIT_SUCCESS
  43. #endif
  44. ;
  45. }

http://zh.wikipedia.org/wiki/%E4%B8%89%E6%B3%95%E5%89%87_(C%2B%2B%E7%A8%8B%E5%BC%8F%E8%A8%AD%E8%A8%88)