我正在做一个与其他程序员合作的项目。我的部分是执行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;
^
我不明白这个问题。如果你能解释一下我,我将不胜感激。
答案 0 :(得分:1)
是否有理由在标题中写下struct
定义而不是?
只需移动
struct pointersToModules {
listofusers *pntToListOfUsers;
recolectorModbus *pntToRecolector; //TEMPORAL: solo pruebas, only test
};
到上面的common.h
extern struct pointersToModules containerOfModules;
错误应该消失 (你做了包含listofusers.h,所以我不相信另一个错误。再试一次)
答案 1 :(得分:1)
您需要将struct pointersToModules
的定义放在头文件中。
如果头文件不是common.h
或者你不想在那里包含它,你可以这样做一个前向声明:
<强> COMMON.H 强>
// Code
struct pointersToModules;
// More code
pointersToModules *ptmObject;
<强> common.cpp 强>
#include "pointers_to_modules.h"
// Code
ptmObject->pntToListOfUsers->process;