求问下为什么函数不接受两个参数?

class Time
{
int hour,minute,second;
public:
Time(int a=0,int b=0,int c=0)
{
hour=a;minute=b;second=c;
}
void setTime(int a,int b,int c)
{
hour=a;minute=b;second=c;
}
void getTime(char*p)
{
char s[1000];
char z[1]={':'};

itoa(hour,s);
strcat(p,s);
strcat(p,z);

itoa(minute,s);
strcat(p,s);
strcat(p,z);

itoa(second,s);
strcat(p,s);
}
};

void itoa(int n,char *s) //普通函数
{
char a[1000];
char *m=a;

for(;n!=0;m++)
{
*m=n%10 + '0';
n=n/10;
}

for(;m!=a;s++)
*s=*(--m);
}

潇潇雨雨
浏览 91回答 1
1回答

HUX布斯

需要在使用之前声明一下函数,你在代码开头加一行:void itoa(int n, char *s);就可以了
打开App,查看更多内容
随时随地看视频慕课网APP