Array sort----arrays.sort () method

Source: Internet
Author: User
Tags array sort

Arrays.sort () is able to sort the array.

Default from small to large, if you want to adjust the order, you need to implement the comparator interface and call

Arrays.sort () can sort data types such as int[], double[], char[], long[], byte[], short[], as illustrated by the most common example of int[] arrays.

Arrays.sort (int[] values)

This way you can sort the array elements of basic types such as int[], double[], long[], by default from small to large

Arrays.sort (int[] A, int fromIndex, int toindex)

This function sorts the data from FromIndex to toIndex-1 for the base type array, as shown below.

Arrays.sort (object[] oj1,new sortcomparator ())

This way you can sort an array of reference types by using the Compare method declared in comparator

Arrays.sort (object[] oj1, int fromIndex, int toindex, new sortcomparator)

Array sort----arrays.sort () method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.