C++/compare float or double to 0 Edit Diff Refresh Backlink Random Search History Help Setting Hide Show double d = 0.0; if (d == 0.0) { } 위 같은 코드에서 EPSILON을 고려해야할까? 아니다. IEEE-754에 따르면, 짧게 이야기하여 double d; d = 0.0; d == 0.0 // guaranteed to evaluate to true, 0.0 can be represented exactly in double double d; d = 0.1; d == 0.1 // not guaranteed to evaluate to true 가 된다. ■ 이 글에는 0 개의 댓글이 있습니다. Please enable JavaScript to view the comments powered by Disqus. comments powered by Disqus