Java Hangs When Converting 2.2250738585072012e-308
11–20 of 70 posts
Re: Java Hangs When Converting 2.2250738585072012e-308
#12Re: Java Hangs When Converting 2.2250738585072012e-308
#13I remember when everyone was bashing PHP ( http://news.ycombinator.com/item?id=2066084 ) when they were bitten by the same issue. Then there were articles about this being maybe a GCC bug or at least design issue but people were still saying that it's PHP's duty to take care of this. I was always afraid that this might bite other environments too as the code that caused the issue in PHP was apparently taken from else…
Java's turn to deal with the x87 register issue. Here's a hint Oracle, "volatile"
Re: Java Hangs When Converting 2.2250738585072012e-308
#14Doesnt hang Ruby 1.9 (MRI) and python 2.7 and python 3.1
Re: Java Hangs When Converting 2.2250738585072012e-308
#15"Konstantin reported this problem to Oracle three weeks ago, but is still waiting for a reply." This speaks volumes about Oracle as the Java's steward.
Re: Java Hangs When Converting 2.2250738585072012e-308
#16Doesnt hang Ruby 1.9 (MRI) and python 2.7 and python 3.1
Ruby 1.8.7 appears to be fine too
Re: Java Hangs When Converting 2.2250738585072012e-308
#17"Konstantin reported this problem to Oracle three weeks ago, but is still waiting for a reply." This speaks volumes about Oracle as the Java's steward.
Re: Java Hangs When Converting 2.2250738585072012e-308
#18"Konstantin reported this problem to Oracle three weeks ago, but is still waiting for a reply." This speaks volumes about Oracle as the Java's steward.
So they're not falling over themselves to fix a bug which no one has noticed for 10+ years, and which hardly anyone is going to hit in actual use. Maybe they're spending their time fixing problems which are actually affecting developers.
This is going to be a big problem.
Re: Java Hangs When Converting 2.2250738585072012e-308
#19So when a (Java) website expects an Int as input, it's not affected, but Clojure,JRuby etc would be?
Am I right, what am I missing?
(see the comment with
user=> (def d 2.2250738585072012e-308)
)
Re: Java Hangs When Converting 2.2250738585072012e-308
#20I remember when everyone was bashing PHP ( http://news.ycombinator.com/item?id=2066084 ) when they were bitten by the same issue. Then there were articles about this being maybe a GCC bug or at least design issue but people were still saying that it's PHP's duty to take care of this. I was always afraid that this might bite other environments too as the code that caused the issue in PHP was apparently taken from else…