首页上一页 1 下一页尾页 3 条记录 1/1页
VC从入门到精通
发表在C语言图书答疑
2010-05-08
是否精华
是
否
版块置顶:
是
否
你好。
void ShowMessage(const char* Text,int Type)
{
printf("Message:Text=%s,Type=%d\n",Text,Type+1);
}
void ShowMessage(const char* Text,unsigned int Type)
{
printf("Message:Text=%s,Type=%d\n",Text,Type);
}
调用程序段:
{
unsigned char i=0;
ShowMessage("ok",i);
}
输出结果为:Message:Text=ok,Type=1
这个地方怎么理解的呢?调用第二个函数也是合法的呀,帮我解释一下,好吧,谢谢!!!!
void ShowMessage(const char* Text,int Type)
{
printf("Message:Text=%s,Type=%d\n",Text,Type+1);
}
void ShowMessage(const char* Text,unsigned int Type)
{
printf("Message:Text=%s,Type=%d\n",Text,Type);
}
调用程序段:
{
unsigned char i=0;
ShowMessage("ok",i);
}
输出结果为:Message:Text=ok,Type=1
这个地方怎么理解的呢?调用第二个函数也是合法的呀,帮我解释一下,好吧,谢谢!!!!