我正在尝试使用排序字符串数组compareTo()。这是我的代码:
static String Array[] = {" Hello ", " This ", "is ", "Sorting ", "Example"};
String temp;
public static void main(String[] args)
{
for (int j=0; j<Array.length;j++)
{
for (int i=j+1 ; i<Array.length; i++)
{
if (Array[i].compareTo(Array[j])<0)
{
String temp = Array[j];
Array[j] = Array[i];
Array[i] = temp;
}
}
System.out.print(Array[j]);
}
}
现在的输出是:
Hello This Example Sorting is
我得到的是结果,但不是我想得到的结果,它们是:
Hello This Example Is Sorting
如何调整代码以正确地对字符串数组进行排序?
小怪兽爱吃肉
相关分类