0

我有几个问题,所以我会在评论中输入数字,以便更容易找到有问题的行。

[1] 如何将 char *p 分配给实际上不存在的令牌变量?

[2] 为什么我们不在这里放 '\0',在其他 if 条件下做了什么?

[3] 为什么我们只将 () 复制到令牌字符串中?在 [] 和字母数字字符的情况下我们不这样做吗?

[4] 这些返回命令很奇怪 IMO -> 首先:为什么它看起来不像返回 PARENS,其次:当它返回 tokentype = '(' 它是一个字符时,为什么函数 gettoken 被声明为返回整数?

[5] SUPPOSING part: let input be (abc) then: ( 导致函数返回 tokentype '(' abc enter if condition (isalpha(C)) and the last ) 退出导致 ungetch 的条件。它是否遵循主要的 else 条件那么我的演练正确吗?

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define MAXTOKEN 100
enum { NAME, PARENS, BRACKETS };
void dcl(void);
void dirdcl(void);
int gettoken(void);
int tokentype; /*type of last token  ALSO [4] !!! */
char token[MAXTOKEN]; /*last token string */
char name[MAXTOKEN]; /*identifier name */
char datatype[MAXTOKEN]; /*data type = char, int, etc. */
char out[1000];

main() /* convert declaration to words */
{
    while (gettoken() != EOF) {    /* 1st token on line */
        strcpy(datatype, token);   /* is the datatype */
        out[0] = '\0';
        dcl();            /* parse rest of line */
        if (tokentype != '\n')
            printf("syntax error\n");
        printf("%s: %s %s\n", name, out, datatype);
    }
    return 0;
}

int gettoken(void) /* return next token */
{
    int c, getch(void);
    void ungetch(int);
    char *p = token;        /* [1] */
    while ((c = getch()) == ' ' || c == '\t')
        ;
    if (c == '(') {
        if ((c = getch()) == ')') {
            strcpy(token, "()");            /* [2][3] */
            return tokentype = PARENS;           /* [4] */
        } else {
            ungetch(c);
            return tokentype = '(';
        }
    } else if (c == '[') {
        for (*p++ = c; (*p++ = getch()) != ']'; )
            ;
        *p = '\0';
        return tokentype = BRACKETS;
    } else if (isalpha(c)) {
        for (*p++ = c; isalnum(c = getch()); ) /* SUPPOSING [5] */
            *p++ = c;
        *p = '\0';
        ungetch(c);
        return tokentype = NAME;
    } else
        return tokentype = c;
}

/* dcl: parse a declarator */
void dcl(void)
{
    int ns;
    for (ns = 0; gettoken() == '*'; ) /* count *'s */
        ns++;
    dirdcl();
    while (ns-- > 0)
        strcat(out, " pointer to");
}

/* dirdcl: parse a direct declarator */
void dirdcl(void)
{
    int type;
    if (tokentype == '(') {
        dcl();
        if (tokentype != ')')
            printf("error: missing )\n");
    } else if (tokentype == NAME) /* variable name */
        strcpy(name, token);
    else
        printf("error: expected name or (dcl)\n");
    while ((type=gettoken()) == PARENS || type == BRACKETS)
        if (type == PARENS)
            strcat(out, " function returning");
        else {
            strcat(out, " array");
            strcat(out, token);
            strcat(out, " of");
        }
}

提前致谢!

4

1 回答 1

2

1)token确实存在,但它是一个定义为的全局变量char token[MAXTOKEN];

2)strcpy()从源复制终止的0字节,所以我们不需要手动做

3)这似乎是对文字字符串的特殊情况处理()- 一些括号之间没有任何内容,而不是处理我们有的情况( some stuff )

4)根据(3),PARENS 看起来像是一组空括号的标记类型,而当我们在它们之间有某些东西时,返回()分别作为特定的 stokentype

5)不确定我是否遵循您的要求,但是,由于右括号似乎没有特殊情况,因此它似乎采用了最后一个else分支,返回tokentype = c

于 2012-08-16T19:41:07.863 回答