Chinaunix首页 | 论坛 | 博客
  • 博客访问: 386996
  • 博文数量: 61
  • 博客积分: 1546
  • 博客等级: 中尉
  • 技术积分: 708
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-22 20:07
文章分类

全部博文(61)

文章存档

2011年(61)

分类: C/C++

2011-06-07 22:51:00

Here's an example:
enum COLOR { RED, BLUE, GREEN, WHITE, BLACK };
This statement performs two tasks:
It makes COLOR the name of an enumeration, that is, a new type.
It makes RED a symbolic constatnt with the value 0, BLUE with the value 1 and so forth.

If you write:
enum Color { RED=100, BLUE, GREEN, WHITE, BLACK };
then the BLUE value 101, GREEN value 102 and so forth.

How to use:
Color c = RED;
if(c==RED)
{
}
else if(c==BLUE)
{
}
阅读(1954) | 评论(0) | 转发(0) |
0

上一篇:Constants of C++.

下一篇:C++ string的简单使用

给主人留下些什么吧!~~