gpt4 book ai didi

c++ - 正确构建项目 C++/QT 的问题

转载 作者:行者123 更新时间:2023-11-28 02:21:23 27 4
gpt4 key购买 nike

我正在做一个与其他程序员合作的项目。我的部分是执行 Web 用户界面。我的意思是,我的应用程序与 Web 交换“jsons”以与您在 Qt 中执行的应用程序交互。

我的模块必须解释我收到的 json,并且可能会执行我的同事正在执行的指令(对象)。

我不知道应用程序中最终会有多少模块,因此可能的指令数量必须易于应用或更改。

我考虑制作一个结构,其中包含指向相信我队友的对象的指针列表。访问这个列表,得到我感兴趣的指针,并根据你收到的指令执行这些对象的方法。

我尝试构造我的 Qt/C++ 项目并使用“struct”类型的全局变量。

我是这样做的:

文件“common.h”

#ifndef COMMON_H
#define COMMON_H

#include <QByteArray>
#include <QCryptographicHash>
#include <QDebug>
#include <QJsonDocument>
....
#include <QString>
#include <QThread>
#include <QTime>
#include <iostream>

#ifndef LISTOFUSERS_H
#include <listofusers.h>
#endif
#ifndef RECOLECTORMODBUS_H
#include <RecolectorRTU/recolectormodbus.h>
#endif

//CONSTANTES GLOBALES. - global constants

#define LENGTH_TOKEN 15
#define MAX_INACTIVITY_TIME 60

/*
* WARNING: CUIDADO AL ACCEDER A ESTOS PUNTEROS Y VARIABLES DESDE
* DIFERENTES HILOS.
* Careful to access a this pointers and variables from diferents threads.
*/

//Listado de punteros a los objetos principales que se usan en el proyecto.
//list of pointers to principals objects that use in de project.
extern struct pointersToModules containerOfModules; // <------ I'VE A ERROR HERE


#endif // COMMON

common.cpp 我有这个:

#include <common.h>


//Listado de punteros de los módulos que se usarán en el proyecto.
struct pointersToModules {
listofusers *pntToListOfUsers;
recolectorModbus *pntToRecolector; //TEMPORAL: solo pruebas, only test
};

所有其他类文件都是这样的:

class1.h

#ifndef CLASS1_H_
#define CLASS1_H_

#include "common.h"

class myclass1 {
.....
};

class1.cpp

#include "class1.h"

myclass1::myclass1 {
....
}

我想要一个包含在所有其他文件中的头文件。正如我在我的 php 项目中所做的那样。

但是我在“common.h”中遇到了问题。当我尝试编译时,给我这个错误:

error: forward declaration of 'struct pointersToModules'
extern struct pointersToModules containerOfModules;
^

但我相信我只是在“common.h”中声明了全局变量(extern struct pointersToModules containerOfModules;)并在“common.cpp”中定义了结构

我不喜欢这样,但我尝试在“common.h”中定义结构,编译器给我的错误是:

error: 'listofusers' does not name a type
listofusers *pntToListOfUsers;
^

我不明白这个问题。如果你能给我解释一下,我将不胜感激。

最佳答案

在 header 中struct定义是有原因的吗?
移动一下

struct pointersToModules {
listofusers *pntToListOfUsers;
recolectorModbus *pntToRecolector; //TEMPORAL: solo pruebas, only test
};

到上面的common.h

extern struct pointersToModules containerOfModules;

错误应该消失了。
(您确实包含了 listofusers.h,所以我不太相信另一个错误。再试一次)

关于c++ - 正确构建项目 C++/QT 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32326485/

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