alphacyberranger to Programmer [email protected]English • 2 years agoJavaimagemessage-square75arrow-up1582arrow-down145
arrow-up1537arrow-down1imageJavaalphacyberranger to Programmer [email protected]English • 2 years agomessage-square75
minus-square@[email protected]linkfedilinkEnglish32•2 years agoAlso, double can and does in fact represent integers exactly.
minus-square@[email protected]linkfedilink18•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@[email protected]linkfedilink-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@Auxlink15•2 years agoC is irrelevant because this post is about Java and in Java long is 64 bits.
minus-squarevoxellinkfedilink2•edit-21 year agoyou should never be using these types in c anyway, (u?)int(8/16/32/64)_t are way more sane
Also, double can and does in fact represent integers exactly.
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