struct的预定义,错误

时间:2014-05-05 22:16:27

标签: c++ struct

我有三个来源: codeproc.h

typedef enum {typeBool, typeVarDeclaration, typeFuncDeclaration } nodeEnum;
typedef struct varDeclarationNodeType{
    char *varName;                  /* Var Name */
    int defaultType;                /* default value type*/
    int defaultValue;               /* default value*/
    int ndim;                       /* number of dimensions */
    int *dim;                       /* dimensions (expandable) */
} varDeclarationNodeType;

typedef struct {
    char *funcName;
    std::vector<char *> *args;       /* arguments (expandable) */
} funcDeclarationNodeType;

typedef struct {
    bool value;
} boolNodeType;

typedef struct nodeTypeTag {
    nodeEnum type;              /* type of node */

    union {
        boolNodeType boolVal;   /* bools */
        varDeclarationNodeType varDeclaration;      /*var declarations*/
        funcDeclarationNodeType funcDeclaration;
    };
} nodeType;

codeproc.cpp

#include "codeproc.h"
#include "codecontext.h"
...

codecontext.h

#include "codeproc.h"
class Function{
public:
    Function();
    ~Function();
    map<string, Value*> locals;     //local variables
    map<string, Value*> args;       //arguments
    int numOfArgs;                  //number of arguments
    nodeType *entryPoint;           //first statement in function
    Value *lastCallResult;          //variable that contain result from last call
};

错误:

  

codeproc.h错误:'varDeclarationNodeType'的前一个声明为'typedef struct varDeclarationNodeType varDeclarationNodeType'

并且喜欢那样。 如何在这种情况下预定义struct?

2 个答案:

答案 0 :(得分:2)

这部分

typedef struct varDeclarationNodeType{
    ...
} varDeclarationNodeType;

应该是这样的

typedef struct{
    ...
} varDeclarationNodeType;

您应该在头文件中使用标题保护或#pragma once

答案 1 :(得分:0)

我看不到预处理器#pragma once指令或某些内容,以确保您不会重新定义类型或多次包含头文件。

include guards放入您的文件中以防止出现双重内容。

在您的特定情况下,头文件顶部的简单#pragma once应该可以防止多个包含(确定已声明所有必需类型,上面的代码只是一个片段)。