template <class T>
MyClass
{
public:
// ...
void MyMethod(T dbNumber)
{
// ...
T dbResult = do_some_operation_on_dbnumber(dbNumber);
if (IsInfinite(dbResult))
{
// ...
}
else if (IsIndefinite(dbResult))
{
// ...
}
else
{
// ...
}
// ...
}
static bool IsInfinite(T dbNumber)
{
// How do I implement this?
}
static bool IsIndefinite(T dbNumber)
{
// How do I implement this?
}
// ...
};
我的代码中有一个数学运算,有时会在模板变量中返回无限和不确定的结果。我想捕获这种不确定的结果。我怎么做?
最佳答案
#include <limits>
using namespace std;
double d = 1.0 / 0.0;
if (d == numeric_limits<double>::infinity( ))
cout << "Its infinite, all right" << endl;
else
cout << "Not in my book" << endl;
这有效。
关于c++ - 如何检查无限(1.#INF)和无限(1.#IND)数字?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8617473/