539
Java
(lemmy.world)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
A double could also be NaN and any operations with NaN should return NaN afaik
A double can represent numbers up to +- 1.79769313486231570x10^308, or roughly 18 with 307 zeroes behind it. You can't fit that into a long, or even 128 bits. Even though rounding huge doubles is pointless, since only the first dozen digits or so are saved, using any kind of Integer would lead to inconsistencies, and thus potentially bugs.
doubles can hold numbers way larger than even 64-bit ints