错误 11 error C2668: “pow”: 对重载函数的调用不明确
inlinelongNUM2Float(longValue,unsignedcharPoint,unsignedcharPointBit){doubleV;#define...
inline long NUM2Float(long Value,unsigned char Point,unsigned char PointBit)
{
double V;
#define BitCount 3 //3位小数点
if (Point == 0)
{
V = pow(10.0,BitCount);
return (long)(Value * V);
}
V = pow(10,PointBit);
return (long)(Value * V);
}
请大家帮我分析分析,为什么 后面的 V = pow(10,PointBit); 这个会提示错误: 错误 11 error C2668: “pow”: 对重载函数的调用不明确
非常感谢您!!! 展开
{
double V;
#define BitCount 3 //3位小数点
if (Point == 0)
{
V = pow(10.0,BitCount);
return (long)(Value * V);
}
V = pow(10,PointBit);
return (long)(Value * V);
}
请大家帮我分析分析,为什么 后面的 V = pow(10,PointBit); 这个会提示错误: 错误 11 error C2668: “pow”: 对重载函数的调用不明确
非常感谢您!!! 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询