Nested class#39; access to enclosing class#39; private data members(嵌套类对封闭类私有数据成员的访问)
问题描述
我在实现一个嵌套类时遇到问题,该类的构造函数是用一些封闭类的私有数据成员初始化的.
I'm having trouble implementing a nested class who's constructor is initialized with some of the enclosing class' private data members.
示例:
Header File:
class Enclosing {
//...Public members
//...Private members
int x, int y
class Inner; // Declaration for nested class
};
Impl. File:
// Stuff...
class Enclosing::Inner {
explicit Inner() : foo(x), bar(y) // foo and bar are data members of Inner
//...
};
我收到一个非静态数据成员的无效使用
错误.在嵌套类访问其封闭类的成员时,我是否遗漏了什么?
I get an invalid use of non-static data member
error. Is there something I'm missing when it comes to nested class access to its enclosing class' members?
推荐答案
Member x
和 y
是 Enclosure
的非静态数据成员,这意味着它们只存在于 Enclosure
类的具体对象中.没有具体的对象,x
和 y
都不存在.同时,您试图在没有对象的情况下引用 x
和 y
.这是不可能的,这就是编译器试图告诉你的.
Member x
and y
are non-static data member of Enclosing
, which means that they only exist within a concrete object of Enclosing
class. Without a concrete object, neither x
nor y
exist. Meanwhile, you are trying to refer to x
and y
without an object. That can't be done, which is what the compiler is trying to tell you.
如果你想从 x
和 y
初始化成员 Inner::foo
和 Inner::bar
,您必须将 Enclosure
类型的具体对象传递给 Inner
的构造函数.例如
If you want to initialize members Inner::foo
and Inner::bar
from x
and y
, you have to pass a concrete object of Enclosing
type into the Inner
s constructor. For example
class Enclosing::Inner {
explicit Inner(const Enclosing& e) : foo(e.x), bar(e.y)
{}
//...
};
额外说明:在原来的C++98中,内部类没有访问外部类的特殊权限.使用 C++98 编译器,您要么必须为内部类提供必要的特权(友谊),要么将成员 x
和 y
公开为公共.但是,这种情况被归类为缺陷在 C++98 中,内部类应该拥有对外部类成员(甚至是私有成员)的完全访问权限.因此,您是否需要对访问权限做任何额外的事情取决于您的编译器.
Extra note: in the original C++98 the inner class has no special privileges is accessing the outer class. With C++98 compiler you'd either have to give the inner class the necessary privileges (friendship) or expose the members x
and y
as public. However, this situation was classified as a defect in C++98, and it was decided that inner classes should have full access to outer class members (even private ones). So, whether you have to do anything extra with regard to access privileges depends on your compiler.
这篇关于嵌套类对封闭类私有数据成员的访问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:嵌套类对封闭类私有数据成员的访问


基础教程推荐
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 常量变量在标题中不起作用 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01