1. 首页
  2. 数据库
  3. 其它
  4. 枚举的用法详细总结

枚举的用法详细总结

上传者: 2020-12-30 19:31:42上传 PDF文件 80.27KB 热度 11次
1、枚举enum的用途浅例写程序时,我们常常需要为某个对象关联一组可选alternative属性.例如,学生的成绩分A,B,C,D等,天气分sunny, cloudy, rainy等等。更常见的,打开一个文件可能有三种状态:input, output和append. 典型做法是,对应定义3个常数,即:const int input = 1;const int output = 2;const int append = 3;然后,调用以下函数:bool open_file(string file_name, int open_mode);比如,open_file(“Phenix_
用户评论