* : Java Glossary

*
In Java, multiplication is indicated by the * and *= operators. If you have an assembler background, Java multiplication may astonish you. When the CPU (Central Processing Unit) hardware multiplies two 32-bit quantities, usually it gets a 64-bit result. You might thus expect the result in Java of multiplying two 32-bit ints to be a 64-bit long. But it is not. It is truncated without overflow notification, to a 32-bit int.

There are other surprises. You might then expect byte * byte to be a byte, char * char to be a char, short * short to be a short, but they are not. All of them result in an int.

Further byte and short are sign extended to int before the multiply.

long * long gives a long, again truncating without overflow notification. long * int also gives a long.

Floating point, (float and double) works quite differently. float * float gives a float and double * double gives a double. double * float also gives a double. Floating point warns you when the multiply fails by giving NaN (Not A Number) results.

Learning More



CMP homejump to top

available on the web at:

http://mindprod.com/jgloss/multiplication.html
  

optional Replicator mirror
of mindprod.com
on local hard disk J:

J:\mindprod\jgloss\multiplication.html
logo
Please email your , letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email. If you want your message, your name or email kept confidential, not considered for public posting, please explicitly specify that. Unless you state otherwise, I will treat your message as a letter to the editor that I may or may not publish in the feedback section. After that, it will be too late to retract it. If you disagree with something I said, especially when sending an ad-hominem attack, a rant composed mainly of obscenities or a death threat, please quote the offending passage and cite the web page where you found it, tell me why you think it is wrong, and, if possible, provide some supporting evidence. I can’t very well fix erroneous or ambiguous text if I can’t find it.
Blog
IP:[65.110.21.43]
Your face IP:[54.234.231.49]
You are visitor number 11.