gpt4 book ai didi

c++ - * 之前预期的构造函数、析构函数或类型转换(第 45 行)

转载 作者:搜寻专家 更新时间:2023-10-31 00:21:18 26 4
gpt4 key购买 nike

第 45 行的主题

//Server.h
class Server : public QTcpServer
{
Q_OBJECT
public:
typedef QHash<int, Student*> Students;
...
Students* getStudents () const;
...
private:
Students _students;
};

//Server.cpp
void Server::setPort( quint16 port )
{
_port = port;
}

quint16 Server::getPort() const
{
return _port;
}
Students* Server::getStudents() const // line 45
{
return _students;
}

最佳答案

Students 实际上是一个“嵌套类型”,编译器无法弄清楚它指的是什么,因为它还没有看到 Server:: 上下文.你需要:

Server::Students* Server::getStudents() const

关于c++ - * 之前预期的构造函数、析构函数或类型转换(第 45 行),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4809554/

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