如何在Java中对字符串的ArrayList进行排序?

我有StringArrayList随机放入的。

private ArrayList<String> teamsName = new ArrayList<String>();

String[] helper;

例如:

teamsName.add(helper[0]) where helper[0] = "dragon";   

teamsName.add(helper[1]) where helper[1] = "zebra";

teamsName.add(helper[2]) where helper[2] = "tigers" // and so forth up to about 150 strings.

考虑到您无法控制输入的事实(即,进入ArrayList的字符串是随机的;以任何顺序排列的斑马或龙),一旦ArrayList充满了输入,我如何按字母顺序对它们进行排序(不包括第一个)?

teamsName[0]很好 排序teamsName[1 to teamsName.size]按字母顺序排列。

回答:

Collections.sort(teamsName.subList(1, teamsName.size()));

上面的代码将反映已排序原始列表的 列表。

以上是 如何在Java中对字符串的ArrayList进行排序? 的全部内容, 来源链接: utcz.com/qa/423772.html

回到顶部