Java学习:数组的排序
Posted LeeAaron
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java学习:数组的排序相关的知识,希望对你有一定的参考价值。
一维数组的排序
使用Arrays.sort()对数组排序
适用于数值型数组 byte/char/short/int/long/float/double
public class Test { public static void main(String[] args) { int[] a = {15,67,51,34,12,99,13,65}; Arrays.sort(a); //for-each for (int i : a) { System.out.print(i + "\t"); } //for // for (int i = 0; i < a.length; i++) { // System.out.print(a[i] + "\t"); // } } }
适用于String型数组(暂时省略)
public class Test { public static void main(String[] args) { String[] b = {"zdfg","asf","ert","dfg","tyjy","cgef"}; Arrays.sort(b); //for-each for (String i : b) { System.out.print(i + "\t"); } } }
以上是关于Java学习:数组的排序的主要内容,如果未能解决你的问题,请参考以下文章