Java List简单操作
2019-03-08 本文已影响0人
longMountain
// 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);