Programming Tutorials

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



Comment Added by : Lim Siong Boon

Comment Added at : 2014-12-29 16:05:08

Comment on Tutorial : float vs double data types in Java By Baski
float should not be use for important precision value, especially on a financial or life threatening system. Use Bigdecimal instead. float or double cannot store certain numbers. Precision problem will occur.

View Tutorial