2

我在尝试定义这个类似函数的宏时遇到了麻烦,它采用 4 个矢量幅度来表示一般圆柱体顶面的长轴和短轴,并确定一般圆柱体的类型。EQUAL 是一个已定义的宏,用于查看两个浮点值是否彼此“相等”。

3080 #define GET_TGC_TYPE(_type, _a, _b, _c, _d) { \
3081     if (EQUAL((_a), (_b)) && EQUAL((_c), (_d))) { \
3082         /* circular base and top */
3083         if (EQUAL((_a), (_c))) { \
3084             /* right circular cylinder */
3085             (_type) = RCC; \
3086         } else { \
3087             /* truncated right cone */
3088             (_type) = TRC; \
3089         } \
3090     } else { \
3091         /* elliptical base or top */
3092         if (EQUAL((_a), (_c)) && EQUAL((_b), (_d))) { \
3093             /* right elliptical cylinder */
3094             (_type) = REC; \
3095         } else { \
3096             /* truncated elliptical cone */
3097             (_type) = TEC; \
3098         } \
3099     }
3100 }

我得到的错误是

3083:9: error: expected identifier or ‘(’ before ‘if’
3086:11: error: expected identifier or ‘(’ before ‘else’
3090:5: error: expected identifier or ‘(’ before ‘}’ token
3090:7: error: expected identifier or ‘(’ before ‘else’
3100:1: error: expected identifier or ‘(’ before ‘}’ token

我对 C 宏没有太多经验,所以我完全有可能遗漏了一些明显的东西。

4

2 回答 2

4

带有注释的行不包含尾随\,因此宏定义在其中的第一个处停止。

于 2012-06-08T18:20:43.077 回答
1

看起来您缺少注释行上的反斜杠。

于 2012-06-08T18:22:09.653 回答