有没有办法在C ++中预先声明嵌套类?

时间:2012-05-13 11:16:52

标签: c++ reference nested prediction

  

可能重复:
  Forward declaration of nested types/classes in C++

对于类的简单交叉引用,可以预先声明类名并将其用作引用。以这种方式,表示是指针。但是如果我想交叉引用两者的嵌套类(请看下面的例子),我会遇到麻烦,因为似乎无法预先声明嵌套类。

所以我的问题是:有没有办法预先解析嵌套类,以便我的例子可以工作?

如果没有:是否有一个共同的解决方法,那不会使代码过于丑陋吗?

// Need to predeclare it to use it inside 'First'
class Second;
class Second::Nested; // Wrong

// Definition for my 'First' class
class First
{
public:
    Second::Nested* sested; // I need to use the nested class of the 'Second' class.
                            // Therefore I need to predeclare the nested class.
    class Nested { };
};

// Definition for my 'Second' class
class Second
{
public:
    First::Nested* fested; // I need to use the nested class of the 'First' class.
                           // This is okay.
    class Nested { };
};

1 个答案:

答案 0 :(得分:4)

简而言之,答案是否定的。

但你应该首先看一下similar question ......

编辑:可能的解决方法可能是将这两个类包装在另一个类中,并在包装​​器中转发delcaring嵌套类。

class Wrapper
{
public:

   // Forward declarations
   class FirstNested;
   class SecondNested;

   // First class
   class First
   {
   public:
      SecondNested* sested;
   };

   // Second class
   class Second
   {
   public:
      FirstNested* fested;
   };
};

通过这种方式,您必须实现Wrapper::AWrapper::B,同时仍然将它们与您正在使用的任何名称空间隔离开来。