error C2668: 'sqrt' : ambiguous call to overloaded

报错信息:

error C2668: 'sqrt' : ambiguous call to overloaded function
1>        f:\program files\microsoft visual studio 9.0\vc\include\math.h(581): could be 'long double sqrt(long double)'
1>        f:\program files\microsoft visual studio 9.0\vc\include\math.h(533): or       'float sqrt(float)'
1>        f:\program files\microsoft visual studio 9.0\vc\include\math.h(128): or       'double sqrt(double)'
1>        while trying to match the argument list '(int)'

            

    当编译器看到sqrt(4)的时候,它会试图去找一个sqrt(int)的函数,但是找不到。

    于是退而求其次,找一个可以从int转换过去的sqrt,结果一下找到了两个,一个是sqrt(long double),另一个是sqrt(float)。编译器认为把int转换成long double或者float都很合理,于是编译器就晕菜了,不知道程序员的真正意图到底是要用哪一个,只好停下来请示,要求程序员明确指定其中一个。

    sqrt(4.0)就不存在这个问题,因为4.0不是int,编译器不需要做转换,直接用对应的就行了。

    sqrtf(4)没问题,是因为sqrtf只有一个函数原型sqrtf(float),编译器没有任何其它选择,就很高兴的直接把int转换成float了。

    

你可能感兴趣的:(error C2668: 'sqrt' : ambiguous call to overloaded)