In Java I need some hint to declare floating point variable that in all virtual machine run uniquely and show number unique float number in all machine ( mobile machine and PC )
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can use
The Java package java.lang.Math class contains these strictfp methods:
|
|||
|
I can suggest 2 classes for this purpose you can think of
The methods of the Random class often produce random numbers in a more convenient form, but requires creating an object, which sometimes is inconvenient. In constrast, the Math.random() method produces a double value which must sometimes be translated and cast into the form you need it. It's a tradeoff between the globalness of Math.random more directly useful numbers from the Random class. |
|||
|
|