我有一堂课
class effeid
{
public:
effeid(int a=0,int b=0,int c=0,int d=0):first(a),second(b),third(c),fourh(d){};
int first;
int second;
int third;
int fourh;
};
然后是第二节课
class AxeEffect {
public:
//and I want to initialize the constructor in that way:
AxeEffect(int=0,string="",int=0,int=0,int=0,int=0,vector<effeid>??? );
如何将带有向量的部分初始化为0?