我是靠谱客的博主 冷艳跳跳糖,最近开发中收集的这篇文章主要介绍error C2668: 'sqrt' : ambiguous call to overloaded function,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
分析:
模棱两可的函数调用,(在oj上提交会编译出错)
- Compile Error
Main.cpp F:temp19889863.2398Main.cpp(21) : error C2668: 'sqrt' : ambiguous call to overloaded function math.h(581): could be 'long double sqrt(long double)' math.h(533): or 'float sqrt(float)' math.h(128): or 'double sqrt(double)' while trying to match the argument list '(int)'
系统分不清该是哪种类型的数据
解决办法:
在sqrt括号里面加强制转换类型,
如:
double Distance(node a,node b)
{
return sqrt((double)(a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
最后
以上就是冷艳跳跳糖为你收集整理的error C2668: 'sqrt' : ambiguous call to overloaded function的全部内容,希望文章能够帮你解决error C2668: 'sqrt' : ambiguous call to overloaded function所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复