Is it valid to compare double directly using ==?

115 Views Asked by At

I always compares doubles like

double a = xxx, b = xxx;
if (fabs(a-b)< 1e5) ...

But I read some codes, they just use

if (a == b) ...

So is it valid to use == directly when comparing doubles? And I don't care the accuracy issue.

0

There are 0 best solutions below