最佳答案
我有一个像这样的课程。
class Container {
public:
class Iterator {
...
};
...
};
在其他地方,我想通过引用传递一个容器:迭代器,但我不想包含头文件。如果我尝试向前声明类,就会出现编译错误。
class Container::Iterator;
class Foo {
void Read(Container::Iterator& it);
};
编译上面的代码得到..
test.h:3: error: ‘Iterator’ in class ‘Container’ does not name a type
test.h:5: error: variable or field ‘Foo’ declared void
test.h:5: error: incomplete type ‘Container’ used in nested name specifier
test.h:5: error: ‘it’ was not declared in this scope
我怎样才能向前声明这个类,这样我就不必包含声明迭代器类的头文件?