Details
Assignee
Michael OffnerMichael OffnerReporter
F KF KPriority
MinorLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
F K
F KPriority
Labels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Created 23 November 2015 at 16:51
Updated 8 June 2022 at 14:09
Hi,
There seems to be an inconsistency between output and internal handling of floating point arithmetic results.
Example:
<cfset MyVar = 2807.75 - 2801.1 - 6.65 /> <cfoutput> Value of MyVar: #MyVar# <br /> <cfif MyVar eq 0> It's zero <cfelse> It's NOT zero </cfif> </cfoutput>
Output in Lucee:
Value of MyVar: 0 It's NOT zero
Output in AdobeCF:
Value of MyVar: 9.05941988094E-014 It's NOT zero
Lucee's behavior of outputting a rounded value but not using it during comparisons is rather frustrating during debugging.
BTW putting a Val() around MyVar does make it equal to 0 in Lucee (but not in AdobeCF).
Regards,
Florian