C++继承中的访问级别
生活随笔
收集整理的這篇文章主要介紹了
C++继承中的访问级别
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 1 C++繼承中的訪問級別
- 1.1 protected訪問級別
- 1.2 定義類時訪問級別的選擇
- 1.3 組合與繼承的綜合實例
1 C++繼承中的訪問級別
1.1 protected訪問級別
思考一下:子類是否可以直接訪問父類的私有成員?
繼承中的訪問級別:
- 面向對象中的訪問級別不只是public和private。
- 可以定義protected訪問級別。
- 關鍵字protected的意義:
- 修飾的成員不能被外界直接訪問。
- 修飾的成員可以被子類直接訪問。
protected關鍵字就是為了繼承而專門設計的,沒有protected就無法完成真正意義上的代碼復用。
protected示例代碼:
#include <iostream> #include <string>using namespace std;class Parent { protected:int mv; public:Parent(){mv = 100;}int value(){return mv;} };class Child : public Parent { public:int addValue(int v){mv = mv + v; } };int main() { Parent p;cout << "p.mv = " << p.value() << endl;// p.mv = 1000; // errorChild c;cout << "c.mv = " << c.value() << endl;c.addValue(50);cout << "c.mv = " << c.value() << endl;// c.mv = 10000; // errorreturn 0; }1.2 定義類時訪問級別的選擇
定義類時訪問級別的選擇如下:
1.3 組合與繼承的綜合實例
#include <iostream> #include <string> #include <sstream>using namespace std;class Object { protected:string mName;string mInfo; public:Object(){mName = "Object";mInfo = "";}string name(){return mName;}string info(){return mInfo;} };class Point : public Object { private:int mX;int mY; public:Point(int x = 0, int y = 0){ostringstream s;mX = x;mY = y;mName = "Point";s << "P(" << mX << ", " << mY << ")";mInfo = s.str();}int x(){return mX;}int y(){return mY;} };class Line : public Object { private:Point mP1;Point mP2; public:Line(Point p1, Point p2){ostringstream s;mP1 = p1;mP2 = p2;mName = "Line";s << "Line from " << mP1.info() << " to " << mP2.info();mInfo = s.str();}Point begin(){return mP1;}Point end(){return mP2;} };int main() { Object o;Point p(1, 2);Point pn(5, 6);Line l(p, pn);cout << o.name() << endl;cout << o.info() << endl;cout << endl;cout << p.name() << endl;cout << p.info() << endl;cout << endl;cout << l.name() << endl;cout << l.info() << endl;return 0; }參考資料:
總結
以上是生活随笔為你收集整理的C++继承中的访问级别的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C++中继承的基本概念
- 下一篇: 去高速服务区吃饭应该怎么选择食品?