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

Programmer Humor

19197 readers
1277 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 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] lysdexic@programming.dev 33 points 1 year ago (1 children)

Also, double can and does in fact represent integers exactly.

[–] Killing_Spark@feddit.de 19 points 1 year ago (1 children)

Only to 2^54. The amount of integers representable by a long is more. But it can and does represent every int value correctly

[–] parlaptie@feddit.de -1 points 1 year ago (2 children)

*long long, if we're gonna be taking about C types. A long is commonly limited to 32 bits.

[–] Aux@lemmy.world 14 points 1 year ago

C is irrelevant because this post is about Java and in Java long is 64 bits.

[–] vox@sopuli.xyz 2 points 1 year ago* (last edited 1 year ago)

you should never be using these types in c anyway, (u?)int(8/16/32/64)_t are way more sane