FileDocCategorySizeDatePackage
Overflow.javaAPI DocExample2666Mon Apr 06 18:10:26 BST 1998None

Overflow

public class Overflow extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

    int big = 0x7fffffff; // max int value
    prt("big = " + big);
    int bigger = big * 4;
    prt("bigger = " + bigger);
  
static voidprt(java.lang.String s)

    System.out.println(s);