this post was submitted on 05 Aug 2023
531 points (92.5% liked)

Programmer Humor

19111 readers
548 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
[–] [email protected] 104 points 1 year ago (24 children)

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

[–] [email protected] 33 points 1 year ago (1 children)

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

[–] [email protected] 18 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

[–] [email protected] -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.

[–] [email protected] 15 points 1 year ago

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

[–] [email protected] 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

load more comments (22 replies)