首页上一页 1 下一页尾页 1 条记录 1/1页
4.1.8重载函数
发表在C语言图书答疑
2010-05-19
是否精华
是
否
版块置顶:
是
否
4.1.8重载函数最后,使用域运算符“::”,加入进入并不能调用第1或者是第2个重载函数,CTRL+F5进行调试提示如下:
OverloadFunction.cpp(20) : error C2039: 'Validate' : is not a member of '`global namespace''
不知道怎么回事呢,为什么不能运行呢。。
[font color=#0000FF]#include "stdafx.h"
bool Vaildata(float x)
{
printf("浮点参数函数\n");
return (x>0) ? true : false;
}
bool Vaildata(int x)
{
printf("整型参数函数\n");
return (x>0) ? true : false;
}
int main(int argc,char* argv[])
{
bool Validate(double x);
::Validate(10.5f);
return 0;
}
bool Validate(double x,double y)
{
printf("实型参数函数\n");
return (x>y) ? true : false;
}[/font]
还有
Validate(10.5f); 为什么10.5后面要加"f",这里加的"f"代表什么意思呢。
谢谢!!
OverloadFunction.cpp(20) : error C2039: 'Validate' : is not a member of '`global namespace''
不知道怎么回事呢,为什么不能运行呢。。
[font color=#0000FF]#include "stdafx.h"
bool Vaildata(float x)
{
printf("浮点参数函数\n");
return (x>0) ? true : false;
}
bool Vaildata(int x)
{
printf("整型参数函数\n");
return (x>0) ? true : false;
}
int main(int argc,char* argv[])
{
bool Validate(double x);
::Validate(10.5f);
return 0;
}
bool Validate(double x,double y)
{
printf("实型参数函数\n");
return (x>y) ? true : false;
}[/font]
还有
Validate(10.5f); 为什么10.5后面要加"f",这里加的"f"代表什么意思呢。
谢谢!!