嵌套类是在另一个封闭类中声明的类。嵌套类是成员,因此具有与任何其他成员相同的访问权限。封闭类的成员对嵌套类的成员没有特殊的访问权限。应当遵守通常的访问规则。
例如,程序1编译时没有任何错误,而程序2编译失败。
程序1
#include
using namespace std;
/* start of Enclosing class declaration */
class Enclosing {
private:
int x;
/* start of Nested class declaration */
class Nested {
int y;
void NestedFun(Enclosing *e) {
cout<x; // works fine: nested class can access
// private members of Enclosing class
}
}; // declaration Nested class ends here
}; // declaration Enclosing class ends here
int main()
{
}
程序2
#include
using namespace std;
/* start of Enclosing class declaration */
class Enclosing {
int x;
/* start of Nested class declaration */
class Nested {
int y;
}; // declaration Nested class ends here
void EnclosingFun(Nested *n) {
cout<y; // Compiler Error: y is private in Nested
}
}; // declaration Enclosing class ends here
int main()
{
}
参考:
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1905.pdf
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。