LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 970|回复: 5

nested class in c++

[复制链接]
发表于 2006-3-8 10:38:50 | 显示全部楼层 |阅读模式
IN C++ , what is the best way to allow nested class to access the member of outer class...

thanks
发表于 2006-3-8 12:22:53 | 显示全部楼层
Nested class has the permission to access the member of the class it nested in according to the C++ ISO/IEC 14882:2003 standard.

You can check it in
http://gcc.gnu.org/bugs.html
Non-bugs->C++ section.
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-3-8 17:55:02 | 显示全部楼层
but it seems that this is not true
consider the following example

[PHP]

class A
{
public:
     A();
     
     class AInner
     {
      public:
           AInner();

           void AAccessor();
     };
private:
      int ToBeAccessed;
};

void A::AInner::AAccessor()
{
      ToBeAccessed += 1;
}

[/PHP]

when the above code is compiled, an error is returned by compiler:
error: ToBeAccessed is not a member of A::AInner
回复 支持 反对

使用道具 举报

发表于 2006-3-8 19:37:04 | 显示全部楼层
可以访问,但不是象你这样访问,如下:
  1. class A
  2. {
  3. public:
  4.      A();
  5.      
  6.      class AInner
  7.      {
  8.       public:
  9.            AInner();
  10.            void AAccessor();
  11.      };
  12. private:
  13.       int ToBeAccessed;
  14. };
  15. void A::AInner::AAccessor()
  16. {
  17.       A a;
  18.       a.ToBeAccessed += 1;
  19. }
复制代码
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-3-8 22:49:59 | 显示全部楼层
what if I don't have the instance of A (means I don't want to have a), are there any other ways to access A's attributes in AInner class ?
回复 支持 反对

使用道具 举报

发表于 2006-3-9 09:39:09 | 显示全部楼层
没有实例,哪来的实例的成员(静态成员除外)?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表