我编译后出现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
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/17 08:48:34
xՑ_KPƿ jF]s.uօ&eh(!,-:gS궋>;{_7Vm '}TUj#d)C䢂$r@IWr:`N9}'`X`݀^G8I".E09NntaJT
c/PiKB+$@9X%wƟ[/ K.)wmɳk(F
HޗѸ^\u">AQ6F,~YNۄIGr5Visd)Gq:R48E\Hpi:9͙KtS2 =b>fJ4o=[d[03gy
//这一句最后要加个{},因为在类中声明了该构造函数,但是没有实现函数体
//加个{}就有了函数实现,就正确啦
我编译后出现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
我编译后出现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
没有那么多错误啦,就只有一处
CPU::CPU(int x,CPU_Ran y,double z):frequency(x),ran(y),voltage(z){};//这一句最后要加个{},因为在类中声明了该构造函数,但是没有实现函数体
//加个{}就有了函数实现,就正确啦