首页 > 代码库 > 【c++函数重载 参数分别为为int和float,但是传入3.14报错】

【c++函数重载 参数分别为为int和float,但是传入3.14报错】

#include <iostream.h>
class Base
{
public:

void f(int x){ cout << "Base::f(int) " << x << endl; }

void f(float x){ cout << "Base::f(float) " << x << endl; }

};
 
void main(void)
{

Base *pb = new Base();

pb->f(3.14);

//vs2013编译报错

//g:\program\c++\c++\c++.cpp(82): error C2668: “Derived::f”: 对重载函数的调用不明确
//1>          g:\program\c++\c++\derived.h(11): 可能是“void Derived::f(int)”
//1>          g:\program\c++\c++\derived.h(10): 或       “void Derived::f(float)”
//1>          尝试匹配参数列表“(double)”时

}


??为什么呢?原因是传入的参数3.14.在vs2013中3.14默认是double类型的常数,那么从double可以隐式转化为float或是int,编译器就会报错,有两个函数可以调用,到底用哪个?修改为pb->f(3.14f),就好了,这样显式声明为float类型。就没有调用的歧义了。

【c++函数重载 参数分别为为int和float,但是传入3.14报错】