Programming Tutorials

Comment on Tutorial - float vs double data types in Java By Baski



Comment Added by : brianmanee

Comment Added at : 2014-09-23 07:04:33

Comment on Tutorial : float vs double data types in Java By Baski
The Decimal, Double, and Float variable types are different in the way that they store the values. Precision is the main difference where float is a single precision (32 bit) floating point data type, double is a double precision (64 bit) floating point data type and decimal is a 128-bit floating point data type.

http://net-informations.com/q/faq/float.html

Brian


View Tutorial