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?
}
// ...
};
There is a mathematical operation in my code which sometimes return infinite and indefinite results in a template variable. I want to catch these kind of indefinite results. How do I do that?
x != xwhen x is NaN. But check your compiler that it does not optimize this check tofalse. WRT INF:x-xwill be NaN for both NaN and INF, I guess that could be used. Again: hope your compiler does not optimize too much. Those can be turned into functions and a real answer, but I'm in a hurry and can't spend the time right now. If someone else wants to do that: be my guest. – Sjoerd Dec 23 '11 at 15:20