gpt4 book ai didi

c++ - 嵌套迭代器类不命名类型

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:19:59 24 4
gpt4 key购买 nike

声明:这个问题是关于以下演示的 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 语句的目的是在实现成员函数(在本例中为运算符重载)时摆脱完全限定名称。因此,请不要提出这样的建议。

最佳答案

using::MyClass 在这里没有效果。命名空间/ block 作用域中的 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 中,您可以使用 namespace 别名:

using MyIterator = MyClass::MyIterator

Live Demo


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

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

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

注意:

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

关于c++ - 嵌套迭代器类不命名类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27759886/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com