alphacyberranger@lemmy.world to Programmer Humor@programming.devEnglish · 1 year agoJavalemmy.worldimagemessage-square77fedilinkarrow-up1584arrow-down148
arrow-up1536arrow-down1imageJavalemmy.worldalphacyberranger@lemmy.world to Programmer Humor@programming.devEnglish · 1 year agomessage-square77fedilink
minus-squarelarvyde@sh.itjust.workslinkfedilinkarrow-up15·1 year agoint coerces to double automatically, without explicit casting
minus-squaresnake_baitman@lemmy.sdf.orglinkfedilinkarrow-up18·1 year agoThe CPU has to do real work to convert between float and int types. Returning an int type would just be giving the CPU extra work to do for no reason
minus-squareNotNotMike@programming.devlinkfedilinkarrow-up3·1 year agoI’m learning so much from this thread and I don’t even use Java
int
coerces todouble
automatically, without explicit castingThe CPU has to do real work to convert between float and int types. Returning an int type would just be giving the CPU extra work to do for no reason
I’m learning so much from this thread and I don’t even use Java