我是靠谱客的博主 能干唇膏,最近开发中收集的这篇文章主要介绍error C2668: 'sqrt' : ambiguous call to overloaded,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

报错信息:

error C2668: 'sqrt' : ambiguous call to overloaded function
1>        f:program filesmicrosoft visual studio 9.0vcincludemath.h(581): could be 'long double sqrt(long double)'
1>        f:program filesmicrosoft visual studio 9.0vcincludemath.h(533): or       'float sqrt(float)'
1>        f:program filesmicrosoft visual studio 9.0vcincludemath.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的全部内容,希望文章能够帮你解决error C2668: 'sqrt' : ambiguous call to overloaded所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部