如何把一个定义好的字符串数组用compareto方法排序,用java语音编写 20
2个回答
2016-01-09
展开全部
String[] arr = { "b", "a", "c", "d", "jg", "t", "afd", "fgf", "hjj", "rry", "mag", "po", "qfg" };
Collections.sort(Arrays.asList(arr));//排序
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2016-01-07
展开全部
Arrays.sort()
static<T> void sort(T[] a, Comparator<? super T> c)
Sorts the specified array of objects according to the order induced by
the specified comparator.
CompareTo需要另写类。
static<T> void sort(T[] a, Comparator<? super T> c)
Sorts the specified array of objects according to the order induced by
the specified comparator.
CompareTo需要另写类。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询