帮助错误:ISO C ++禁止“向量”的声明无类型(Help with error: ISO C++

2019-07-22 02:44发布

正如标题状态,我不知道为什么我得到这个错误。 我已经把一个TEST.CPP这是类似这样的结构,并能正常工作。 此外,除向量问题外,还有关于“保护”,这是不是即使在代码中的其他问题。 我想“保护”是一个宏,所以没有告诉那里的东西。 我是新来QT,所以我可能“这样做是错误的。” 这肯定是编译器的建议。

In file included from DrvCrystalfontz.cpp:8:
LCDText.h:28: error: ISO C++ forbids declaration of 'vector' with no type
LCDText.h:28: error: expected ';' before '<' token
LCDText.h:30: error: ISO C++ forbids declaration of 'vector' with no type
LCDText.h:30: error: expected ',' or '...' before '<' token
LCDText.h:46: error: expected ':' before 'protected'
LCDText.h: In constructor 'LCDText::LCDText(int, int, int, int, int, int, int, QObject*)':
LCDText.h:33: error: expected '{' at end of input
scons: *** [DrvCrystalfontz.o] Error 1
scons: building terminated because of errors.

下面的代码。 我在编号错误注意到线。

#ifndef __LCD_TEXT__
#define __LCD_TEXT__

#include <vector>
#include <QObject>

#include "LCDBase.h"
#include "WidgetText.h"
#include "WidgetBar.h"
#include "WidgetHistogram.h"
#include "WidgetIcon.h"
#include "WidgetBignums.h"
#include "WidgetGif.h"

class LCDText: public LCDBase, public virtual QObject {
    Q_OBJECT
    protected:
        char *LayoutFB;
        char *DisplayFB;
        int GOTO_COST;
        int CHARS;
        int CHAR0;
        int LROWS;
        int LCOLS;
        int DROWS;
        int DCOLS;
        vector<vector<char *> > chars; // Line 28
        void (*TextRealWrite) (const int row, const int col, const char *data, const int len);
        void (*TextRealDefchar) (const int ascii, const vector<char *> matrix); // Line 30
    public:
        LCDText(int rows, int cols, int xres, int yres, int _goto, int chars,
            int char0, QObject *parent) : LCDBase(xres, yres), QObject(parent); // Line 33
        ~LCDText();
        void TextInit(int rows, int cols);
        void TextBlit(int row, int col, int  height, int width);
        void TextClear();
        void TextClearChars();
        void TextGreet();
        void TextDraw(WidgetText widget);
        void TextBarDraw(WidgetBar widget);
        void TextHistogramDraw(WidgetHistogram widget);
        void TextIconDraw(WidgetIcon widget);
        void TextBignumsDraw(WidgetBignums widget);
        void TextGifDraw(WidgetGif widget);
     public signals: // Line 46
         void SpecialCharChanged(int ch);
     public slots:
         void TextSpecialCharChanged(int ch);
};

#endif

Answer 1:

矢量驻留在std命名空间。 你必须做下列之一:

在前面加上命名空间中的类型:

std::vector<std::vector<char *> > chars;

告诉编译器使用的是矢量从空间std

using std::vector;
vector<vector<char *> > chars;

或者,告诉你正在使用std命名空间的编译器,这将带来的一切(不推荐,见注释)

using namespace std;


Answer 2:

在C ++标准库中声明的每个符号是std命名空间的一部分。 为了使用这些声明必须由它的全名是指它。 即的std ::。
作为MichaelM回答,你应该使用std :: vector的,而不是载体。 你可以,但是,使用下面的“使用声明”:
1. using std::vector;
2. using namespace std; // using namespace ...; is mostly discouraged as it causes a mass-import of symbols into the global namespace using namespace std; // using namespace ...; is mostly discouraged as it causes a mass-import of symbols into the global namespace

在任何情况下,大多数的时候,你应该为它污染了全局命名空间为您头部的每个用户避免在头文件中使用的声明。

祝好运



文章来源: Help with error: ISO C++ forbids declaration of 'vector' with no type
标签: c++ vector