我编译后出现4个错误 #includeusing namespace std;enum CPU_Ran{P1=1,P2,P3,P4,P5,P6,P7};class CPU{public:\x05CPU(int x,CPU_Ran y,double z);\x05~CPU(){\x05\x05cout

问题描述:

我编译后出现4个错误
#include
using namespace std;
enum CPU_Ran{P1=1,P2,P3,P4,P5,P6,P7};
class CPU{
public:
\x05CPU(int x,CPU_Ran y,double z);
\x05~CPU(){
\x05\x05cout

没有那么多错误啦,就只有一处CPU::CPU(int x,CPU_Ran y,double z):frequency(x),ran(y),voltage(z){};//这一句最后要加个{},因为在类中声明了该构造函数,但是没有实现函数体//加个{}就有了函数实现,...