如何从方法返回嵌套类指针?

时间:2014-08-21 12:56:03

标签: c++ linked-list

我有两个类:DatabaseNode作为嵌套类,是否可以使用Node的方法返回Node*

我尝试将方法nextNode的返回类型设置为Node*,但我收到了编译错误:'Node' does not name a type

Databse.h

class Database
{
    public:
        Database();
        Database& operator+=(const Client&);
        ~Database();
    private:
        class Node //node as nested class
        {
            public:
            Node(); //ctor
            void setHead(Client*&); //add head node
            Node* nextNode(Node*&); //return new node from the end of he list
            private:
            Client* data; //holds pointer to Client object
            Node* next; //holds pointer to next node in list
        };

        Node *head; //holds the head node
};
Databse.cpp中的

nextNode方法声明:

Node* Database::Node::nextNode(Node*& start)
{
....
....
    return current->next;
}

感谢。

2 个答案:

答案 0 :(得分:5)

Node嵌套在Database中,因此您需要返回类型的范围:

DataBase::Node* Database::Node::nextNode(Node*& start)
^^^^^^^^^^

参数已经在范围内,因此您可以保持原样。

答案 1 :(得分:5)

除了juanchopanza的回答之外,C ++ 11的尾随返回类型允许你在范围内声明它:

auto Database::Node::nextNode(Node*& start) -> Node* {
    // ...
}