-
Bug
-
Resolution: Fixed
-
P1
-
1.1
-
1.1beta3
-
sparc
-
solaris_2.5.1
-
Not verified
masayoshi.okutsu@Eng 1996-12-20
Math.max(long,long) and .min(long,long) return an incorrect result with the
following test program on Solaris. This works correctly on Win95.
Source program:
class max_min {
public static void main (String args[]) {
System.out.println("max") ;
System.out.println(Math.max(-9223372036854775808L,9223372036854775807L));
System.out.println("min") ;
System.out.println(Math.min(-9223372036854775808L,9223372036854775807L));
}
}
Result:
JDK102% javac max_min.java
JDK102% java max_min
max
9223372036854775807
min
-9223372036854775808
jdk11% javac max_min.java
jdk11% java max_min
max
-9223372036854775808
min
9223372036854775807