帮助解决错误:ISO C++禁止声明'vector'没有类型

Sco*_*ott 11 c++ vector

正如标题所述,我不确定为什么我会收到此错误.我已经整理了一个类似于这个结构的test.cpp,它运行正常.另外,除了向量问题之外,还有另一个关于'protected'的问题,即使在代码中也是如此.我认为'protected'是一个宏,所以不知道那里有什么.我是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.
Run Code Online (Sandbox Code Playgroud)

这是代码.我已经对错误中记录的行进行了编号.

#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
Run Code Online (Sandbox Code Playgroud)

Mic*_*elM 31

Vector驻留在std命名空间中.您必须执行以下操作之一:

在命名空间前面添加类型:

std::vector<std::vector<char *> > chars;
Run Code Online (Sandbox Code Playgroud)

告诉编译器您正在使用std命名空间中的vector

using std::vector;
vector<vector<char *> > chars;
Run Code Online (Sandbox Code Playgroud)

或者,告诉编译器您正在使用std命名空间,这将引入所有内容(不推荐,请参阅注释)

using namespace std;
Run Code Online (Sandbox Code Playgroud)

  • 请为了人类的爱,不要在头文件中"使用命名空间XXX".你会让遇到它的每一个程序员都哭泣. (21认同)