上一篇文章我們介紹了c++中類的繼承學習總結;今天我們繼續來分享c++中類的繼承中的訪問級別的學習總結。
一、繼承中的訪問級別學習:
1、子類是否可以直接訪問父類的私用成員嗎?
從面向對象理論角度來看:
子類擁有父類的一切屬性和行為,也就是說,子類能夠直接訪問父類的私有成員。
從c++的語法角度看:
外界不能直接訪問類的private成員,也就是說,子類不能直接訪問父類的私用成員。
代碼示例:
#include <iostream>
#include <string>
using namespace std;
class Parent
{
private:
int mv;
public:
Parent()
{
mv = 100;
}
int value()
{
return mv;
}
};
class Child : public Parent
{
public:
int addValue(int v)
{
mv = mv + v; // 如何訪問父類的非公有成員
}
};
int main()
{
return 0;
}
輸出結果:
root@txp-virtual-machine:/home/txp# g++ test.cpp
test.cpp: In member function ‘int Child::addValue(int)’:
test.cpp:9:9: error: ‘int Parent::mv’ is private
int mv;
^
test.cpp:27:9: error: within this context
mv = mv + v; // 如何訪問父類的非公有成員
^
test.cpp:9:9: error: ‘int Parent::mv’ is private
int mv;
^
test.cpp:27:14: error: within this context
mv = mv + v; // 如何訪問父類的非公有成員
^
注解:我們可以看到子類不能直接訪問到父類里面的屬性
2、繼承中的訪問級別關系
面向對象中的訪問級別不只是public和private
可以定義protected訪問級別
關鍵字protect的意義
--修飾的成員不能被外界直接訪問
-- 修飾的成員可以被子類直接訪問
代碼實現
#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; // error
Child c;
cout << "c.mv = " << c.value() << endl;
c.addValue(50);
cout << "c.mv = " << c.value() << endl;
c.mv = 10000; // error
return 0;
}
運行結果:
root@txp-virtual-machine:/home/txp# g++ test.cpp
test.cpp: In function ‘int main()’:
test.cpp:9:9: error: ‘int Parent::mv’ is protected
int mv;
^
test.cpp:37:8: error: within this context
p.mv = 1000; // error
^
test.cpp:9:9: error: ‘int Parent::mv’ is protected
int mv;
^
test.cpp:47:7: error: within this context
c.mv = 10000; // error
注解:這里我們把父類的屬性private修改成protect,這里我們注意到在子類里面的方法中是可以使用父類中的屬性mv了,只不過在int main()函數中,使用父類和子類定義的對象,均不可以對父類中的屬性mv進行訪問,這一點要注意。
3、為什么面向對象中需要protect?
我們還是用生活中的例子來理解,每個人的個人隱私,是不能泄露的,也就是我們c++中的private關鍵字;而你身上穿的衣服,每個人都可以知道,也就是c++中的public關鍵字;最后我們的protect關鍵字,為啥c++中會需要它,我想還是跟生活中有關(所以說,面向對象的編程,非常貼近生活),比如說,家庭開會,有些事情就不能讓外人知道,但是自己家人就可以知道,所以這跟protect關鍵字的用法非常像,也就是說,protect關鍵鑒于private和public之間。
4、定義類時訪問級別的選擇:
注解:從圖中我們可以發現,當有發生繼承關系時,就考慮使用protect關鍵字
5、組合和繼承的綜合運用
說明:Object這個類是被用來繼承的;Line和Point兩個類進行組合。
代碼示例:
#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;
}
輸出結果:
root@txp-virtual-machine:/home/txp# ./a.out
Object
Point
P(1, 2)
Line
Line from P(1, 2) to P(5, 6)
二、總結:
面向對象中的訪問級別不只是public和private
protected修飾的成員不能別外界所訪問
protected使得子類能夠訪問父類的成員
protected關鍵字為了繼承而專門設計的
沒有protected關鍵字就無法完成真正代碼意義上的代碼復用了
好了,今天的分享就到這里,如果文章中有錯誤或者不理解的地方,可以交流互動,一起進步。我是txp,下期見!
-
可編程邏輯
+關注
關注
7文章
517瀏覽量
44147 -
C++
+關注
關注
22文章
2114瀏覽量
73792
發布評論請先 登錄
相關推薦
評論