gpt4 book ai didi

c - 在 switch 语句中使用枚举类型

转载 作者:太空狗 更新时间:2023-10-29 16:33:47 26 4
gpt4 key购买 nike

如果检测到某些特殊情况,我会使用 switch 语句提前从我的主函数返回。特殊情况使用枚举类型进行编码,如下所示。

typedef enum {
NEG_INF,
ZERO,
POS_INF,
NOT_SPECIAL
} extrema;

int main(){

// ...

extrema check = POS_INF;

switch(check){
NEG_INF: printf("neg inf"); return 1;
ZERO: printf("zero"); return 2;
POS_INF: printf("pos inf"); return 3;
default: printf("not special"); break;
}

// ...

return 0;

}

奇怪的是,当我运行它时,字符串 not special 被打印到控制台,而 main 函数的其余部分继续执行。

如何让 switch 语句在这里正常运行?谢谢!

最佳答案

没有 case 标签。你现在有了 goto 标签。尝试:

switch(check){
case NEG_INF: printf("neg inf"); return 1;
case ZERO: printf("zero"); return 2;
case POS_INF: printf("pos inf"); return 3;
default: printf("not special"); break;
}

关于c - 在 switch 语句中使用枚举类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15237656/

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