Has Arrays class been removed in JDK 8
?
I just downloaded jdk-8-ea-bin-b104-windows-i586-22_aug_2013.exe and tried to compile my program through it, but the import
import java.util.Arrays
is throwing error, showing class not found
.
Has Arrays class been removed in JDK 8
?
I just downloaded jdk-8-ea-bin-b104-windows-i586-22_aug_2013.exe and tried to compile my program through it, but the import
import java.util.Arrays
is throwing error, showing class not found
.
Hopefully you want this:-
import java.util.Arrays;
instead of
import java.util.Arrays
Has Arrays class been removed in JDK 8 ?
No they are not.
Add additional utility methods to java.util.Arrays that use the JSR 166 Fork/Join parallelism common pool to provide sorting of arrays in parallel.