alphacyberranger to Programmer Humor@programming.devEnglish • 2 years agoJavalemmy.worldimagemessage-square93fedilinkarrow-up1585arrow-down148
arrow-up1537arrow-down1imageJavalemmy.worldalphacyberranger to Programmer Humor@programming.devEnglish • 2 years agomessage-square93fedilink
minus-square@Killing_Spark@feddit.delinkfedilink19•2 years agoOnly to 2^54. The amount of integers representable by a long is more. But it can and does represent every int value correctly
minus-square@parlaptie@feddit.delinkfedilink-1•2 years ago*long long, if we’re gonna be taking about C types. A long is commonly limited to 32 bits.
minus-square@Aux@lemmy.worldlinkfedilink15•2 years agoC is irrelevant because this post is about Java and in Java long is 64 bits.
minus-squarevoxellinkfedilink2•edit-22 years agoyou should never be using these types in c anyway, (u?)int(8/16/32/64)_t are way more sane
Only to 2^54. The amount of integers representable by a long is more. But it can and does represent every int value correctly
*long long, if we’re gonna be taking about C types. A long is commonly limited to 32 bits.
C is irrelevant because this post is about Java and in Java long is 64 bits.
you should never be using these types in c anyway,
(u?)int(8/16/32/64)_t
are way more sane