我可以用printf()显示枚举的值吗?

时间:2010-01-29 12:15:54

标签: c printf enums

是否有单行使我可以输出枚举的当前值?

7 个答案:

答案 0 :(得分:45)

作为一个字符串,没有。作为整数,%d。

除非算上:

static char* enumStrings[] = { /* filler 0's to get to the first value, */
                               "enum0", "enum1", 
                               /* filler for hole in the middle: ,0 */
                               "enum2", "enum3", .... };

...

printf("The value is %s\n", enumStrings[thevalue]);

这对于类掩码的枚举不起作用。此时,您需要一个哈希表或其他更精细的数据结构。

答案 1 :(得分:23)

enum MyEnum
{  A_ENUM_VALUE=0,
   B_ENUM_VALUE,
   C_ENUM_VALUE
};


int main()
{
 printf("My enum Value : %d\n", (int)C_ENUM_VALUE);
 return 0;
}

你只需将枚举转换为int!
输出:我的枚举值:2

答案 2 :(得分:6)

已经给出了正确答案:不,你不能给出枚举的名称,只有它的价值。

尽管如此,只是为了好玩,这将为您提供一个枚举和一个查找表,并为您提供一种按名称打印它的方法:

main.c中:

#include "Enum.h"

CreateEnum(
        EnumerationName,
        ENUMValue1,
        ENUMValue2,
        ENUMValue3);

int main(void)
{
    int i;
    EnumerationName EnumInstance = ENUMValue1;

    /* Prints "ENUMValue1" */
    PrintEnumValue(EnumerationName, EnumInstance);

    /* Prints:
     * ENUMValue1
     * ENUMValue2
     * ENUMValue3
     */
    for (i=0;i<3;i++)
    {
        PrintEnumValue(EnumerationName, i);
    }
    return 0;
}

Enum.h:

#include <stdio.h>
#include <string.h>

#ifdef NDEBUG
#define CreateEnum(name,...) \
    typedef enum \
    { \
        __VA_ARGS__ \
    } name;
#define PrintEnumValue(name,value)
#else
#define CreateEnum(name,...) \
    typedef enum \
    { \
        __VA_ARGS__ \
    } name; \
    const char Lookup##name[] = \
        #__VA_ARGS__;
#define PrintEnumValue(name, value) print_enum_value(Lookup##name, value)
void print_enum_value(const char *lookup, int value);
#endif

Enum.c

#include "Enum.h"

#ifndef NDEBUG
void print_enum_value(const char *lookup, int value)
{
    char *lookup_copy;
    int lookup_length;
    char *pch;

    lookup_length = strlen(lookup);
    lookup_copy = malloc((1+lookup_length)*sizeof(char));
    strcpy(lookup_copy, lookup);

    pch = strtok(lookup_copy," ,");
    while (pch != NULL)
    {
        if (value == 0)
        {
            printf("%s\n",pch);
            break;
        }
        else
        {
            pch = strtok(NULL, " ,.-");
            value--;
        }
    }

    free(lookup_copy);
}
#endif

免责声明:请勿这样做。

答案 3 :(得分:2)

enum A { foo, bar } a;
a = foo;
printf( "%d", a );   // see comments below

答案 4 :(得分:2)

有些老兄在这篇文章中提出了一个聪明的预处理器想法

Easy way to use variables of enum types as string in C?

答案 5 :(得分:0)

我遇到了同样的问题。

我必须打印颜色为enum col { WHITE, GRAY, BLACK };的节点的颜色和节点:typedef struct Node { col color; };

我尝试使用node->color打印printf("%s\n", node->color);,但我在屏幕上显示的只是(null)\n

答案 bmargulies 几乎解决了这个问题。

所以我的最终解决方案是:

static char *enumStrings[] = {"WHITE", "GRAY", "BLACK"};
printf("%s\n", enumStrings[node->color]);

答案 6 :(得分:0)

打印枚举值可能很棘手,因为其每个成员的大小可能因实现而异。以在 gcc 8.4.0 上编译的这个例子为例。

#include <stdio.h>

int main(void) {
  enum option {A = 0, B = 0x100000000};

  // Enumerator sizes of the same enumeration can differ
  printf("sizeof(A)=%zu\n", sizeof(A)); // sizeof(A)=4
  printf("sizeof(B)=%zu\n", sizeof(B)); // sizeof(B)=8

  // Same output even though they have different values
  printf("A=%d\n", A); // A=0
  printf("B=%d\n", B); // B=0

  // You should know beforehand the maximum enumerator size
  printf("A=%ld\n", A); // A=0
  printf("B=%ld\n", B); // B=4294967296
}