android - 反转数组的顺序

发布于 2024-10-25 05:19:45 字数 305 浏览 3 评论 0原文

我有一系列对象。

是否可以创建一个新数组作为该数组的副本,但顺序相反? 我正在寻找这样的东西。

// my array
ArrayList<Element> mElements = new ArrayList<Element>();
// new array
ArrayList<Element> tempElements = mElements;

tempElements.reverse(); // something to reverse the order of the array

I have an array of objects.

Is it possible to make a new array that is a copy of this array, but in reverse order?
I was looking for something like this.

// my array
ArrayList<Element> mElements = new ArrayList<Element>();
// new array
ArrayList<Element> tempElements = mElements;

tempElements.reverse(); // something to reverse the order of the array

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

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

发布评论

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

评论(5

清风无影 2024-11-01 05:19:45

您可以分两步执行此操作:

ArrayList<Element> tempElements = new ArrayList<Element>(mElements);
Collections.reverse(tempElements);

You can do this in two steps:

ArrayList<Element> tempElements = new ArrayList<Element>(mElements);
Collections.reverse(tempElements);
木格 2024-11-01 05:19:45

Kotlin

val reverseList: List<Int> = yourActualList.reversed();

参考

Kotlin

val reverseList: List<Int> = yourActualList.reversed();

Reference

挽清梦 2024-11-01 05:19:45

简单的方法,无需执行任何操作。

                ArrayList<YourObject> oldlist = new ArrayList<YourObject>();
                ArrayList<YourObject> newList = new ArrayList<YourObject>();
                int size = oldlist.size()-1;

                for(int i=size;i>=0;i--){
                    newList.add(oldlist.get(i));
                }

Simple approach without implementing anything.

                ArrayList<YourObject> oldlist = new ArrayList<YourObject>();
                ArrayList<YourObject> newList = new ArrayList<YourObject>();
                int size = oldlist.size()-1;

                for(int i=size;i>=0;i--){
                    newList.add(oldlist.get(i));
                }
无法回应 2024-11-01 05:19:45

对于 Kotlin 上的 Android,这可以通过 Anko 的 forEachReversedByIndex{} lambda 操作,如下所示:

val tempElements = ArrayList<Element>(mElements.size)
mElements.forEachReversedByIndex{tempElements.add(it)}

For Android on Kotlin, this can be done with Anko's forEachReversedByIndex{} lambda operation, like this:

val tempElements = ArrayList<Element>(mElements.size)
mElements.forEachReversedByIndex{tempElements.add(it)}
深海夜未眠 2024-11-01 05:19:45

将配置文件从升序反转为降序

我通过In kotlin

 // A comparator to compare points of Profile 
class ProfileComparator {
    companion object : Comparator<Profile?> {
        override fun compare(o1: Profile?, o2: Profile?): Int {
            if (o1 == null || o2 == null) {
                return 0;
            }
            return o2.points.compareTo(o1.points)
        }
    }
}

,然后

var profilesList = profiles.sortedWith(ProfileComparator)

I reversed the Profile from ascending to descending order by

In kotlin

 // A comparator to compare points of Profile 
class ProfileComparator {
    companion object : Comparator<Profile?> {
        override fun compare(o1: Profile?, o2: Profile?): Int {
            if (o1 == null || o2 == null) {
                return 0;
            }
            return o2.points.compareTo(o1.points)
        }
    }
}

and then

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