摘要: 1. 基本数组: //直接通过Arrays.sort工具类 int[] arr = new int[]{1,2,6,24,5,68,9,0}; Arrays.sort(arr); 2.对象数组: //通过实现Comparable接口来排序 public class student implement 阅读全文
posted @ 2018-09-12 00:18 mljqqh 阅读(2096) 评论(0) 推荐(1) 编辑