gpt4 book ai didi

c - 结构类型上的 Yacc union

转载 作者:太空宇宙 更新时间:2023-11-04 08:10:22 25 4
gpt4 key购买 nike

我遇到这个问题,我的 YACC 文件似乎无法访问我的头文件中定义的类型。

如果我用 %code requires{ } 替换我的头文件,它确实可以识别它,但这并不是我真正想要的。

我的st.h头文件:

struct node {
int item;
int identifier;
struct node *left;
struct node *middle;
struct node *right;
};

typedef struct node NODE;
typedef NODE *TREE;

我的 parser.y 文件:

%{
#include <stdio.h>
#include <stdlib.h>
#include "st.h"
%}

%union {
int value;
TREE token;
}

Yacc(或 C)给我这个错误:

error: unknown type name ‘TREE’

我知道这很可能是我的错误,我将不胜感激任何帮助。

最佳答案

当您尝试编译其中包含 #include "y.tab.h" 的其他源文件(不是您的解析器文件)时,您(很可能)会遇到此错误。问题在于,由于您的 %union 使用 st.h 中定义的类型,因此您需要始终在 #include "st.h" 之前 #include "y.tab.h" 在每个想要包含后者的文件中。

关于c - 结构类型上的 Yacc union ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40028904/

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