Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 java 驱动程序中,我从集合中获取记录到 DBCursor 中,然后在 cursor 时迭代它们hasNext()。
hasNext()
我需要根据获取的数据中的字段计算一个值,然后返回根据我计算的新值排序的数据。知道如何实现吗?
使用我在 Remon van Vliet 建议使用 Comparator 解决我的问题后找到的本指南:
在 Java 中使用 Collections.sort 和 Comparator