(原創) C++的4個Class Access Label (C/C++)

OOP的三大特色:『繼承,封裝,多型』,C++使用了4個class access label實踐封裝:『public、protected、private、friend』。

4個access label的使用時機如下:
public:當資料可以給user、自己和derived class存取時使用。
protected:當資料不可以給user存取,只能給自己和derived class存取時使用。

private:當資料不可以給user和derived class使用,只可以給自己存取時使用。

friend:指定一個global function可存取private資料。

其中較難理解的是friend,這在其他語言都沒有,其實friend在C++也只用在operator overloading,其他地方則不應該使用,因為違反了OOP封裝的原則。

以下範例demo四種class access label的用法:

 1 ExpandedBlockStart.gif ContractedBlock.gif /**/ /* 
 2InBlock.gif(C) OOMusou 2007 http://oomusou.cnblogs.com
 3InBlock.gif
 4InBlock.gifFilename    : ClassAccessLabel.cpp
 5InBlock.gifCompiler    : Visual C++ 8.0 / ISO C++
 6InBlock.gifDescription : Demo class access label
 7InBlock.gifRelease     : 01/23/2007 1.0
 8ExpandedBlockEnd.gif*/

 9 None.gif#include  < iostream >
10 None.gif
11 None.gif using   namespace  std;
12 None.gif
13 ExpandedBlockStart.gifContractedBlock.gif class  Student  dot.gif {
14InBlock.gif// private :
15InBlock.gifprotected// must use protected to allow derived class to access.
16InBlock.gif  int studentNo;
17InBlock.gifprotected:
18ExpandedSubBlockStart.gifContractedSubBlock.gif  Student(int studentNo = 0) : studentNo(studentNo) dot.gif{}
19InBlock.gifpublic:
20InBlock.gif  friend ostream& operator<<(ostream&const Student&); // use global function
21ExpandedBlockEnd.gif}
;
22 None.gif
23 ExpandedBlockStart.gifContractedBlock.gif class  Bachelor :  public  Student  dot.gif {
24InBlock.gifpublic:
25ExpandedSubBlockStart.gifContractedSubBlock.gif  Bachelor(int studentNo = 0) : Student(studentNo) dot.gif{} // Call base class constructor
26InBlock.gifpublic:
27ExpandedSubBlockStart.gifContractedSubBlock.gif  int getStudentNo() dot.gif{
28InBlock.gif     return this->studentNo;
29ExpandedSubBlockEnd.gif  }

30ExpandedBlockEnd.gif}
;
31 None.gif
32 ExpandedBlockStart.gifContractedBlock.gifostream &   operator << (ostream &   out const  Student &  student)  dot.gif {
33InBlock.gif  out << student.studentNo << endl;
34InBlock.gif
35InBlock.gif  return out;
36ExpandedBlockEnd.gif}

37 None.gif
38 None.gif
39 ExpandedBlockStart.gifContractedBlock.gif int  main()  dot.gif {
40InBlock.gif  Bachelor John(123456);
41InBlock.gif  cout << John.getStudentNo() << endl;
42InBlock.gif  cout << John << endl;
43ExpandedBlockEnd.gif}


執行結果

None.gif 123456
None.gif
123456


程式的架構Student為ABC,Bachelor繼承了Student,studentNo為學號,若使用了14行的private,則Bachelor::getStudentNo()將無法存取studentNo,必須改成15行的protected,而constructor和member function,因為本來就是要給user存取的,所以放在public,比較特別的是18行Student的Constructor放在protected,因為Student為ABC,不能被建立成object,所以constructor不應該為public,只要是protected供derived class呼叫即可,當然寫成public也不會造成程式錯誤。

20行的friend,主要是operator overloading給<<使用,因為是global function,又要讓<<存取private data,只好宣告此global function為friend,再次強調,C++應該只在operator overloading使用friend,其他地方亂使用都會違反OOP的封裝原則。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值