OnJava8-Examples/operators/Overflow.java
2015-09-07 11:44:36 -06:00

17 lines
367 B
Java

// operators/Overflow.java
// ©2015 MindView LLC: see Copyright.txt
// Surprise! Java lets you overflow.
public class Overflow {
public static void main(String[] args) {
int big = Integer.MAX_VALUE;
System.out.println("big = " + big);
int bigger = big * 4;
System.out.println("bigger = " + bigger);
}
}
/* Output:
big = 2147483647
bigger = -4
*/