HelloWorld.java 275 B

123456789101112131415
  1. package misc;
  2. import java.math.BigInteger;
  3. public class HelloWorld {
  4. public static void main(String[] args) {
  5. System.out.println("HelloWorld!");
  6. byte[] tmp = new byte[0];
  7. BigInteger bi = new BigInteger(1, tmp);
  8. System.out.println(bi.toByteArray().length);
  9. }
  10. }