求指导 3q very much!
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/15 11:26:52
求指导 3q very much!
错误:'setaccount::setaccount' :overloaded member function 'void (int,int,double)' not found in 'setaccount'
.我是声明头文件吧
#ifndef setaccount_h
#define setaccount_h
class setaccount{
public:
setaccount(int nid,int npsw,double nbalance);
.
private:
.
};
#endif
.我是cpp
#include "setaccount.h"
#include
using namespace std;
setaccount::setaccount(int nid,int npsw,double nbalance)
{
ID=nid;psw=npsw;balance=nbalance;
}
错误:'setaccount::setaccount' :overloaded member function 'void (int,int,double)' not found in 'setaccount'
.我是声明头文件吧
#ifndef setaccount_h
#define setaccount_h
class setaccount{
public:
setaccount(int nid,int npsw,double nbalance);
.
private:
.
};
#endif
.我是cpp
#include "setaccount.h"
#include
using namespace std;
setaccount::setaccount(int nid,int npsw,double nbalance)
{
ID=nid;psw=npsw;balance=nbalance;
}
你重载了构造函数之后需要把默认构造函数加上去
setaccount(){}
再问: 大神你好,小白没懂. 我貌似木有重载函数啊? 我构造了此函数,默认构造函数是啥?
再答: setaccount(int nid,int npsw,double nbalance); 这种函数名为类名,不写返回类型的函数就是构造函数 你如果不写的话,编译器会使用默认的构造函数来创建对象 如果你重载了这个构造函数,那么默认的构造函数必须显示添加上,不然就会报错 你在.h文件中setaccount(int nid,int npsw,double nbalance);前面加上这句 setaccount(){} 没有分号 就应该没问题了
setaccount(){}
再问: 大神你好,小白没懂. 我貌似木有重载函数啊? 我构造了此函数,默认构造函数是啥?
再答: setaccount(int nid,int npsw,double nbalance); 这种函数名为类名,不写返回类型的函数就是构造函数 你如果不写的话,编译器会使用默认的构造函数来创建对象 如果你重载了这个构造函数,那么默认的构造函数必须显示添加上,不然就会报错 你在.h文件中setaccount(int nid,int npsw,double nbalance);前面加上这句 setaccount(){} 没有分号 就应该没问题了