C++构造函数实现,哪里有问题呢?为什么出现错误,使用VS2012

2024-12-02 06:59:00
推荐回答(1个)
回答(1):

看图片里使用了settime方法,但类定义里只声明了settime方法,却没有实现部分

把实现部分加进去:

void Clock::settime(int xh=0,int yh=0,int zh=0)
{
     x=xh;
     y=yh;
     z=zh;
 }