I\'m trying to use the java.util.Arrays class in JavaSE 6 but not sure how i would implement it? on an array that I have generated?
before the start of the class i
You can use a static import
import static java.util.Arrays.*; int[] ints = {3, 4, 1, 2, 5, 7, 6}; sort(ints);