c++ 枚举类型如何使用?

#include"iostream"usingnamespacestd;classCPU{public:CPU(inta,intb,doublec);CPU(CPU&am... #include "iostream"using namespace std;class CPU{public: CPU(int a,int b,double c); CPU(CPU &); int getfr(){return frequency;} int getwo(){return wordlength;} double getco(){return coefficient;} void run(){cout<<"run"<<endl;} void stop(){cout<<"stop"<<endl;}private: int frequency; enum cpu_len {8,16,32,64,128,256}wordlength; double coefficient;};CPU::CPU(int a,int b,double c){ frequency=a; wordlength=b; coefficient=c; cout<<"构造函数被调用"<<endl;}CPU::CPU(CPU &L):frequency(L.frequency),wordlength(L.wordlength),coefficient(L.coefficient){ cout<<"拷贝构造函数被调用"<<endl;}int main(){ CPU cpu1(4,1,4.0); CPU cpu2(cpu1); cout<<"cpu1"<<endl; cout<<"主频:"<<cpu1.getfr()<<"MHz"<<"字长:"<<cpu1.getwo()<<"倍频:"<<cpu1.getco()<<endl; cout<<"cpu2"<<endl; cout<<"主频:"<<cpu2.getfr()<<"MHz"<<"字长:"<<cpu2.getwo()<<"倍频:"<<cpu2.getco()<<endl;} 展开
 我来答
王爱飞waffaw
2011-06-17 · TA获得超过317个赞
知道小有建树答主
回答量:353
采纳率:0%
帮助的人:217万
展开全部
enum EnumType{ First, Second,...};
或者是enum EnumType{First = 30, Second = 50,...};
cicy821
2011-06-17 · TA获得超过167个赞
知道答主
回答量:151
采纳率:0%
帮助的人:111万
展开全部
enum EnumType{ First, Second,...};
或者是enum EnumType{First = 30, Second = 50,...};
使用的时候跟宏一样使用。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式