java中比较大小问题,Arrays.sort()不是可以排序的吗,为什么得不到正确答案

importjava.util.Arrays;publicclassCompare{publicstaticvoidmain(Stringargs[]){Arrays.s... import java.util.Arrays;
public class Compare{
public static void main(String args[]){
Arrays.sort(args);
System.out.print(args[0]);
for(int i=1;i<args.length;i++){
System.out.print("<"+args[i]);
}
}
}
在虚拟机中以 java Compare num1 num2 num3...的形式输入要比较的数字
展开
 我来答
wantairl
2012-07-25 · TA获得超过157个赞
知道答主
回答量:484
采纳率:100%
帮助的人:220万
展开全部

LZ运行方式肯定错了

你需要先给args赋值

那么LZ肯定会问 这个不是在控制台赋值么?

答案是肯定不是在那赋值的

如图

操作如何出现图片上的呢?

在LZ这个类点右键 run as confi.... 

就可以进到如上界面

添加你需要给args赋值的内容如图 


然后保存 或者运行 那么就对啦

看见过 :

般若兮若
2012-07-25 · TA获得超过2706个赞
知道小有建树答主
回答量:1246
采纳率:0%
帮助的人:944万
展开全部
/**
* Sorts the specified array of objects into ascending order, according to
* the {@linkplain Comparable natural ordering}
* of its elements. All elements in the array
* must implement the {@link Comparable} interface. Furthermore, all
* elements in the array must be <i>mutually comparable</i> (that is,
* <tt>e1.compareTo(e2)</tt> must not throw a <tt>ClassCastException</tt>
* for any elements <tt>e1</tt> and <tt>e2</tt> in the array).<p>
*
* This sort is guaranteed to be <i>stable</i>: equal elements will
* not be reordered as a result of the sort.<p>
*
* The sorting algorithm is a modified mergesort (in which the merge is
* omitted if the highest element in the low sublist is less than the
* lowest element in the high sublist). This algorithm offers guaranteed
* n*log(n) performance.
*
* @param a the array to be sorted
* @throws ClassCastException if the array contains elements that are not
* <i>mutually comparable</i> (for example, strings and integers).
*/
public static void sort(Object[] a) {
Object[] aux = (Object[])a.clone();
mergeSort(aux, a, 0, a.length, 0);
}
以上是源码
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
flower_wzm
2012-07-25 · TA获得超过921个赞
知道小有建树答主
回答量:636
采纳率:0%
帮助的人:288万
展开全部
一般都不用args[]的,主方法的这个东西基本是放着看的,都是空的,你不给他传参数,他的for循环就直接结束了,因为args.length=0了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式