嵌套迭代器 class 没有命名类型

Nested Iterator class does not name a type

声明:这个问题是关于以下演示的 using 语句存在的错误。我知道在 SO 上还有其他类似的问题,但没有一个回答了我的具体问题。而且我知道如何在没有 using 语句的情况下使其工作。

在我的头文件中:

class MyClass
{
    public:
    class MyIterator
    {
        public:
            MyIterator& operator++(int);

        private:
            static const MyIterator END; 
    };

    ...
};

在我的实现文件(.cc 文件)中:

using ::MyClass; //**QUESTION: I've already used the class, why did the nested MyIterator class not get recognized?** EDIT: excuse my English, I can't write - by I've already used, I mean, I've already told the compiler "using that class"

// the following line is the definition of the static const object
const MyIterator MyIterator::END = MyIterator(); //error: ‘MyIterator’ does not name a type

MyIterator& MyIterator::operator++(int) //error: ‘MyIterator’ does not name a type
{
    ...
}

正如我在评论中提出的那样 - 问题:我已经使用了这个类,为什么嵌套的“MyIterator”类没有被识别? ---更正:我已经告诉编译器"using the class",为什么...

非常感谢。

编辑: 非常感谢您指出常量差异;复制粘贴时出错;已更正。

请注意,引入 using 语句的目的是在实现成员函数(在本例中为运算符重载)时摆脱完全限定名称。因此请不要暗示。

using ::MyClass在这里没有作用。命名空间/块作用域中的 using 声明将另一个命名空间的成员引入当前命名空间,避免使用命名空间限定符。但在您的情况下,两个命名空间是相同的:全局命名空间

这种声明的经典用法是:

#include <iostream>
#include <string>
using std::string;
int main()
{
    string str = "Example";
    using std::cout;
    cout << str;
}

根据您的情况,您可以使用 typedef :

typedef MyClass::MyIterator MyIterator;

或者在 C++11 中,您可以使用名称空间别名:

using MyIterator = MyClass::MyIterator

Live Demo


您可以为您的定义使用完整的限定名称(并删除 using):

MyClass::MyIterator& MyClass::MyIterator::operator++(int)
{
    // ...
}

我发现它更清楚,因为当 reader 看到它时,它知道 MyIteratorMyClass 的嵌套类型,无需阅读和浏览 using 声明。

注:

  • 您对 operator++ 的定义是 const,但您的声明不是:这是一个错误。