枚举类型问题
只能把枚举值赋予枚举变量,不能把元素的数值直接赋予枚举变量。如:a=sum;
b=mon;
是正确的。而:
a=0;
b=1;错误。
那么那个程序中p->tm_wday是数值啊。不是枚举值呀。。
要怎么理解呢?
是不是要加(enum Weekday)p->tm_wday. 这里写着是0~~~6啊出来的应该是数值哇 你这个旧版的吧?新版的好像没有这个限制
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,只不过在输入的时候,允许特定的字符形式~ claws0n 发表于 2018-10-15 11:16
你这个旧版的吧?新版的好像没有这个限制
OK知道咯。
页:
[1]