Languages
[Edit]
EN

Java - get int max value

8 points
Created by:
Argon
617

Short solution:

int MAX_VALUE = Integer.MAX_VALUE;

System.out.println(MAX_VALUE); // 2147483647

Java Integer max value is 2,147,483,647.

Short solution to get int min value:

int MIN_VALUE = Integer.MIN_VALUE;

System.out.println(MIN_VALUE); // -2147483648

Java Integer min value is -2,147,483,648.

1. Different ways of how to get Integer max value

Below we can see 4 different ways of how to get Integer max value in java. 

public class Example1 {

    public static void main(String[] args) {

        int MAX_VALUE = Integer.MAX_VALUE;
        System.out.println(MAX_VALUE);   // 2147483647

        int MAX_VALUE_2 = (int) Math.pow(2, 31);
        System.out.println(MAX_VALUE_2); // 2147483647

        int MAX_VALUE_3 = -1 >>> 1;
        System.out.println(MAX_VALUE_3); // 2147483647

        int MAX_VALUE_4 = ~0 >>> 1;
        System.out.println(MAX_VALUE_4); // 2147483647
    }
}

Output:

2147483647
2147483647
2147483647
2147483647

2. Integer overflow example

public class Example2 {

    public static void main(String[] args) {

        int MAX_VALUE = Integer.MAX_VALUE;
        int overflow = MAX_VALUE + 100;
        System.out.println(overflow); // -2147483549
    }
}

Output:

-2147483549

 

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java - numbers operations

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join