风骚的小胖子。 发表于 2018-10-15 10:44:45

枚举类型问题

只能把枚举值赋予枚举变量,不能把元素的数值直接赋予枚举变量。如:
    a=sum;
b=mon;
是正确的。而:
    a=0;
b=1;错误。
那么那个程序中p->tm_wday是数值啊。不是枚举值呀。。
要怎么理解呢?

风骚的小胖子。 发表于 2018-10-15 10:49:26

是不是要加(enum Weekday)p->tm_wday.

风骚的小胖子。 发表于 2018-10-15 10:53:23

这里写着是0~~~6啊出来的应该是数值哇

claws0n 发表于 2018-10-15 11:16:26

你这个旧版的吧?新版的好像没有这个限制
You can use the enumerated type to declare symbolic names to represent integer constants. By using the enum keyword, you can create a new “type” and specify the values it may have. (Actually, enum constants are type int ; therefore, they can be used wherever you would use an int .) The purpose of enumerated types is to enhance the readability of a program. The syntax is similar to that used for structures. For example, you can make these declarations:

enum 就是 int,只不过在输入的时候,允许特定的字符形式~

风骚的小胖子。 发表于 2018-10-15 11:29:13

claws0n 发表于 2018-10-15 11:16
你这个旧版的吧?新版的好像没有这个限制




OK知道咯。
页: [1]
查看完整版本: 枚举类型问题