美文网首页
Java List简单操作

Java List简单操作

作者: longMountain | 来源:发表于2019-03-08 15:10 被阅读0次
// 1
List<String> person=new ArrayList<>(); // 创建数组
person.add("jackie");   // 添加元素,索引为0
person.remove(3);   // 删除
person.get(1); // 获取

// 2
if (fruits.contains(appleString)) {  // 是否包含
                System.out.println("我喜欢吃苹果");
            }

// 3 改变数值
people.set(0, d);   
people.add(1, e);

//增强for循环遍历list
            for(String str:people){
                System.out.println(str);
            }
// 查看索引
System.out.println(names.indexOf("刘备"));
            System.out.println(names.lastIndexOf("刘备"));
            System.out.println(names.indexOf("张飞"));
            System.out.println(names.lastIndexOf("张飞"));


// 截取集合
//生成新list
            phone=phone.subList(1, 4);  //.subList(fromIndex, toIndex)      //利用索引1-4的对象重新生成一个list,但是不包含索引为4的元素,4-1=3
            for (int i = 0; i < phone.size(); i++) { // phone.size() 该方法得到list中的元素数的和
                System.out.println("新的list包含的元素是"+phone.get(i));
            }

// 判断是否为空
if (person.isEmpty()) {
    System.out.println("空的");
}else {
    System.out.println("不是空的");
}

// 集合转换成字符串
String liString="";
liString=person.toString();
System.out.println("将集合转换为字符串:"+liString);

参考
https://www.cnblogs.com/epeter/p/5648026.html

相关文章

网友评论

      本文标题:Java List简单操作

      本文链接:https://www.haomeiwen.com/subject/ooprpqtx.html