c++ 類訪問(wèn)修飾符
數(shù)據(jù)隱藏是面向?qū)ο缶幊痰囊粋€(gè)重要特點(diǎn),它防止函數(shù)直接訪問(wèn)類類型的內(nèi)部成員。類成員的訪問(wèn)限制是通過(guò)在類主體內(nèi)部對(duì)各個(gè)區(qū)域標(biāo)記 public、private、protected 來(lái)指定的。關(guān)鍵字 public、private、protected 稱為訪問(wèn)說(shuō)明符。
一個(gè)類可以有多個(gè) public、protected 或 private 標(biāo)記區(qū)域。每個(gè)標(biāo)記區(qū)域在下一個(gè)標(biāo)記區(qū)域開(kāi)始之前或者在遇到類主體結(jié)束右括號(hào)之前都是有效的。成員和類的默認(rèn)訪問(wèn)修飾符是 private。
class base { public: // public members go here protected: // protected members go here private: // private members go here };
1. 公有(public)成員
公有成員在程序中類的外部是可訪問(wèn)的。您可以不使用任何成員函數(shù)來(lái)設(shè)置和獲取公有變量的值,如下所示:
#include <iostream> using namespace std; class line { public: double length; void setlength( double len ); double getlength( void ); }; // 成員函數(shù)定義 double line::getlength(void) { return length ; } void line::setlength( double len ) { length = len; } // 程序的主函數(shù) int main( ) { line line; // 設(shè)置長(zhǎng)度 line.setlength(6.0); cout << "length of line : " << line.getlength() <<endl; // 不使用成員函數(shù)設(shè)置長(zhǎng)度 line.length = 10.0; // ok: 因?yàn)?length 是公有的 cout << "length of line : " << line.length <<endl; return 0; }
當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:
length of line : 6 length of line : 10
2. 私有(private)成員
私有成員變量或函數(shù)在類的外部是不可訪問(wèn)的,甚至是不可查看的。只有類和友元函數(shù)可以訪問(wèn)私有成員。
默認(rèn)情況下,類的所有成員都是私有的。例如在下面的類中,width 是一個(gè)私有成員,這意味著,如果您沒(méi)有使用任何訪問(wèn)修飾符,類的成員將被假定為私有成員:
class box { double width; public: double length; void setwidth( double wid ); double getwidth( void ); };
實(shí)際操作中,我們一般會(huì)在私有區(qū)域定義數(shù)據(jù),在公有區(qū)域定義相關(guān)的函數(shù),以便在類的外部也可以調(diào)用這些函數(shù),如下所示:
#include <iostream> using namespace std; class box { public: double length; void setwidth( double wid ); double getwidth( void ); private: double width; }; // 成員函數(shù)定義 double box::getwidth(void) { return width ; } void box::setwidth( double wid ) { width = wid; } // 程序的主函數(shù) int main( ) { box box; // 不使用成員函數(shù)設(shè)置長(zhǎng)度 box.length = 10.0; // ok: 因?yàn)?length 是公有的 cout << "length of box : " << box.length <<endl; // 不使用成員函數(shù)設(shè)置寬度 // box.width = 10.0; // error: 因?yàn)?width 是私有的 box.setwidth(10.0); // 使用成員函數(shù)設(shè)置寬度 cout << "width of box : " << box.getwidth() <<endl; return 0; }
當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:
length of box : 10 width of box : 10
3. 保護(hù)(protected)成員
保護(hù)成員變量或函數(shù)與私有成員十分相似,但有一點(diǎn)不同,保護(hù)成員在派生類(即子類)中是可訪問(wèn)的。
在下一個(gè)章節(jié)中,您將學(xué)習(xí)到派生類和繼承的知識(shí)?,F(xiàn)在您可以看到下面的實(shí)例中,我們從父類 box 派生了一個(gè)子類 smallbox。
下面的實(shí)例與前面的實(shí)例類似,在這里 width 成員可被派生類 smallbox 的任何成員函數(shù)訪問(wèn)。
#include <iostream> using namespace std; class box { protected: double width; }; class smallbox:box // smallbox 是派生類 { public: void setsmallwidth( double wid ); double getsmallwidth( void ); }; // 子類的成員函數(shù) double smallbox::getsmallwidth(void) { return width ; } void smallbox::setsmallwidth( double wid ) { width = wid; } // 程序的主函數(shù) int main( ) { smallbox box; // 使用成員函數(shù)設(shè)置寬度 box.setsmallwidth(5.0); cout << "width of box : "<< box.getsmallwidth() << endl; return 0; }
當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:
width of box : 5