gpt4 book ai didi

检查字符串是否是 C 中的有效枚举

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

我想弄清楚是否有更好的方法来测试在命令行输入的字符串是否是 C 程序的有效枚举条目。

有没有更好的方法来测试枚举中的条目而不是说:

if((!strcmp(string, "NUM0")) && (!strcmp(string, "NUM1")))
{
printf("Invalid entry\n");
return(EXIT_FAILURE);
}

最佳答案

我是这样做的:

enum opt {NUM0, NUM1, NUM2, OPT_END};
static const char *opt_str[OPT_END] = {"NUM0", "NUM1", "NUM2"};

enum opt i;
for (i = 0; i < OPT_END; ++i)
if (strcmp(string, opt_str[i]) == 0) break;

if (i == OPT_END) {
puts("Invalid entry");
return EXIT_FAILURE;
}
/* do something with i */

此外,您可以使用 x-macros确保您的枚举和字符串同步:How to convert enum names to string in c .

关于检查字符串是否是 C 中的有效枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40329746/

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