this post was submitted on 05 Aug 2023
530 points (92.3% liked)

Programmer Humor

24772 readers
1424 users here now

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.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] RoyaltyInTraining@lemmy.world 103 points 2 years ago (24 children)

Makes sense, cause double can represent way bigger numbers than integers.

[–] disencentivized@programming.dev 5 points 2 years ago (2 children)
[–] Beanie@programming.dev 2 points 2 years ago

doubles can hold numbers way larger than even 64-bit ints

[–] RoyaltyInTraining@lemmy.world 2 points 2 years ago

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.

load more comments (21 replies)