This chapter discusses eight primitive data types in Java.
8. Floating Point Types
Answer:
No — it has a decimal point.
Floating Point Types
If you use the literal 197.0 in a program, the decimal point tells the compiler to represent the value using a floating point primitive data type. The bit pattern used for floating point 197.0 is very much different than that used for the integer 197. There are two floating point primitive types.
Data type float
is sometimes called "single-precision floating point". Data type double
has twice as many bits and is sometimes called "double-precision floating point". These phrases come from the language FORTRAN, at one time the dominant programming language.
In source programs, floating point literals always have a decimal point in them, and no commas although you can used underscore to separate thousands:
123.0 -123.5 -198234.234 -198_234.234 0.00000381 0.000_003_81
Note: Literals written like the above will automatically be of type double
. Almost always, if you are dealing with floating point numbers you should use variables of type double
. Then the data type of literals like the above will match the data type of your variables. Data type float
should be used only for special circumstances (such as when you need to process a file of data containing 32 bit floats).
Question 8:
(Thought question: ) Do you think that using float
instead of double
saves a significant amount of computer memory?