我是靠谱客的博主 温柔翅膀,最近开发中收集的这篇文章主要介绍Groovy列表,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

末尾追加
size()数组长度

class Example {
static void main(String[] args) {
def list1 = [] ;
def list2 = [1,2,3,4];
list2.add(12);
list2.add(12);
println(list2.size());
println(list2);
}
}

6
[1, 2, 3, 4, 12, 12]

contains 包含元素返回为true

class Test{
static void main(String[] args){
def list2 = [1,2,3,4];
println(list2.contains(1));
}
}

返回值是true

get (int number)获取元素的位置

class Test {
static void main(String [] args){
String a = [1,2,3];
println(get(1));
}
}

打印值是2,获取索引值为1的value

isEmpty是否为空

class Example {
static void main(String[] args) {
def lst = [11, 12, 13, 14];
def emptylst = [];
println(lst.isEmpty());
println(emptylst.isEmpty());
}
}

false
true

minus数组中删除数组,删除不存在的不会报错

class Test{
static void main(String[]args){
def list1 = [1,3,4,45,9];
deef list2 = 1list.minus([1,3,4,2]);
println(list2 );
}
}

[45, 9]

plus function which is used to add a new array to the existing array.

class Test{
static void main(String []args){
def list1 = [1,2,3,5];
def list2 = list1.plus([4,6]);
println(list1);
println(list2);
println(list2.sort());
}
}

[1, 2, 3, 5]
[1, 2, 3, 5, 4, 6]
[1, 2, 3, 4, 5, 6]

pop删除最后 一个元素

class Test{
static void main(String []args){
def list1 = [1,2,3,5];
def value= list1.pop();//返回删除的值
println(list1);//
println(value);
}
}

[1,2,3]
5
remove删除指定索引的值

class Test{
static void main(String [] args){
def ar = [1,3,4,5];
def v = ar.remove(1);//返回删除的值
println(ar);
println(ar.reverse());
println(v);
}
}

[1, 4, 5]
[5, 4, 1]
3

最后

以上就是温柔翅膀为你收集整理的Groovy列表的全部内容,希望文章能够帮你解决Groovy列表所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部