我有一个 if...else 语句,并且在编译时收到警告“并非所有控制路径都返回一个值”。谁能告诉我为什么会收到此警告?
我的代码:
template<typename T>
double NumericArray<T>::Dot(const NumericArray& na)
{
if (Size() == na.Size())
{
double result = 0;
for (int i=0; i<Size(); i++)
{
result += ((na.GetElement(i))*(GetElement(i)));
}
return result;
}
else
{
cout<<"Error! Dot Product Operands Number Of Elements Unequal"<<endl;
}
}
除了定义的结果之外,我看不到如何通过我的代码获得任何其他结果。
谢谢。