Advertisement
GenuineSounds

Untitled

Feb 12th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.64 KB | None | 0 0
  1. Original:
  2. {Float: 8.5f, Double: 1234.5678d, Long: -1L, Short: 32767s, DataCompound: {}, BigInteger: [19 bytes], Boolean: true, Byte: 36b, IntArray: [2,4,6,8,], ByteArray: [4 bytes], String: "Test "stuff"", BigDecimal: "1234.567000000000000000000000000000000000000000008", Integer: -1}
  3.  
  4. Notable changes:
  5. long was cast to byte, int[] was cast to byte[], int was cast to byte.
  6. {Float: 8.5f, Double: 1234.5678d, Long: -1b, Short: 32767s, DataCompound: {}, BigInteger: [19 bytes], Boolean: true, Byte: 36b, IntArray: [4 bytes], ByteArray: [4 bytes], String: "Test "stuff"", BigDecimal: "1234.567000000000000000000000000000000000000000008", Integer: -1b}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement