bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java How To's
Java•Java How To's

Java How To Sort an Array

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java How To Sort an Array?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ java.util.Arrays;
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Java Arrays Class Reference
You can use the sort() method, found in java.
How To Sort an Array

How To Sort an Array

You can use the sort() method, found in java.util.Arrays , to sort an array:

Example

import java.util.Arrays;
public class Main {
  public static void main(String[] args) {
    String[] cars = {"Volvo", "BMW", "Tesla", "Ford", "Fiat", "Mazda", "Audi"};
    Arrays.sort(cars);
    for (String i : cars) {
      System.out.println(i);
    }
}
}

Related Pages

Java Arrays Class Reference

Previous

Java How To Find the Average of Array Elements

Next

Java How To - Smallest Element in an Array