Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,24 @@
|
|||
1. //Double equal to 1.0
|
||||
1.0 //Double, a 64-bit IEEE-754 floating point number (equivalent to Java's double primitive type)
|
||||
2432311.7567374 //Double
|
||||
1.234E-10 //Double
|
||||
1.234e-10 //Double
|
||||
758832d //Double
|
||||
728832f //32-bit IEEE-754 floating point number (equivalent to Java's float primitive type)
|
||||
1.0f //Float
|
||||
758832D //Double
|
||||
728832F //Float
|
||||
1.0F //Float
|
||||
1 / 2. //Double
|
||||
1 / 2 //Int equal to 0
|
||||
|
||||
// Constants
|
||||
Float.MinPositiveValue
|
||||
Float.NaN
|
||||
Float.PositiveInfinity
|
||||
Float.NegativeInfinity
|
||||
|
||||
Double.MinPositiveValue
|
||||
Double.NaN
|
||||
Double.PositiveInfinity
|
||||
Double.NegativeInfinity
|
||||
Loading…
Add table
Add a link
Reference in a new issue