It is no difference between declaring a MIN_VALUE with a "-" notation or without a "-" notation in Java. Both of the variables will be -2147483648.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int min1 = -Integer.MIN_VALUE; | |
int min2 = Integer.MIN_VALUE; | |
//min1 = -2147483648 | |
//min2 = -2147483648 |
No comments:
Post a Comment