我有两个类:Database
和Node
作为嵌套类,是否可以使用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;
}
感谢。
答案 0 :(得分:5)
Node
嵌套在Database
中,因此您需要返回类型的范围:
DataBase::Node* Database::Node::nextNode(Node*& start)
^^^^^^^^^^
参数已经在范围内,因此您可以保持原样。
答案 1 :(得分:5)
除了juanchopanza的回答之外,C ++ 11的尾随返回类型允许你在范围内声明它:
auto Database::Node::nextNode(Node*& start) -> Node* {
// ...
}