liyiqi 发表于 2019-12-19 21:44:55

C++中如何是用构造函数对枚举类型赋值,最好举例。谢谢。

CPU(int f,double v,int r):frequency(f),voltage(v),rank(r){}
为生么这样错了

Croper 发表于 2019-12-19 22:28:38

enum example{et_s,et_a,et_b,et_c};
int main() {
        example a = et_s;
        example b = et_a;
        example c = (example)2;
}
页: [1]
查看完整版本: C++中如何是用构造函数对枚举类型赋值,最好举例。谢谢。