gpt4 book ai didi

list - 如何将元素移动到groovy中列表的第一个位置

转载 作者:行者123 更新时间:2023-12-02 00:30:57 31 4
gpt4 key购买 nike

如何重新排序列表:

['apple', 'banana', 'orange']

如果用户选择香蕉,列表将变为

['banana', 'apple', 'orange']

最佳答案

另一种方法:

def list = ['apple', 'banana', 'orange']
// get a reference to the selection (banana)
def pick = list.find { it == 'banana' }
// remove selection from the the list
def newList = list.minus(pick)
// add selection back at the beginning
newList.add(0, pick)

关于list - 如何将元素移动到groovy中列表的第一个位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14017941/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com