ArrayList 排序无法正常工作

发布于 2024-09-18 15:20:49 字数 785 浏览 5 评论 0原文

我正在尝试对 ArrayList 进行排序,但是当我检查所谓已排序数组中的第一项时,它是不正确的。我不知道为什么?我错过了什么吗?

这是我的比较器:

package org.stocktwits.helper;

import java.util.Comparator;

import org.stocktwits.model.Quote;

public class NameComparator implements Comparator<Quote>
{

    public int compare(Quote o1, Quote o2) {
        return o1.getName().compareToIgnoreCase( o2.getName());
    }
}

这是我执行实际排序的方式:

Collections.sort(quotes, new NameComparator());

这是我的测试数据

quotes = ["Yahoo", "Microsoft", "Apple"]

排序后我希望它是:

quotes = ["Apple", "Microsoft", "Yahoo"]`

但是,当我在排序后拉出第一个项目时,我得到:“Yahoo”

I am trying to sort my ArrayList, but when I check the first item in my supposedly sorted array, it is incorrect. I am not sure why? Am I missing anything?

Here is my Comparator:

package org.stocktwits.helper;

import java.util.Comparator;

import org.stocktwits.model.Quote;

public class NameComparator implements Comparator<Quote>
{

    public int compare(Quote o1, Quote o2) {
        return o1.getName().compareToIgnoreCase( o2.getName());
    }
}

Here is how I perform the actual sort:

Collections.sort(quotes, new NameComparator());

Here is my test data

quotes = ["Yahoo", "Microsoft", "Apple"]

After sorting I want it to be:

quotes = ["Apple", "Microsoft", "Yahoo"]`

However when I pull out the first item after the sort, I get: "Yahoo"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离笑几人歌 2024-09-25 15:20:49

你的代码有效。它一定在其他地方。
ideone 上的代码

Your code works. It must be somewhere else.
Code on ideone

凉薄对峙 2024-09-25 15:20:49

类似的版本对我来说很好用:

        class NameComparator implements Comparator<String>
    {

        public int compare(String o1, String o2) {
            return o1.compareToIgnoreCase( o2 );
        }
    }

    ArrayList<String> s = new ArrayList<String>(3);
    s.add("Yahoo");
    s.add("Microsoft");
    s.add("Apple");

    Collections.sort(s, new NameComparator());
    System.out.println(s);

当您填写并从集合中读取时,您能在这里获取代码吗?

Similar version works for me fine:

        class NameComparator implements Comparator<String>
    {

        public int compare(String o1, String o2) {
            return o1.compareToIgnoreCase( o2 );
        }
    }

    ArrayList<String> s = new ArrayList<String>(3);
    s.add("Yahoo");
    s.add("Microsoft");
    s.add("Apple");

    Collections.sort(s, new NameComparator());
    System.out.println(s);

Could you take here code, when you fill and read from collection?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文